diff options
author | Steven Knight <knight@baldmt.com> | 2002-12-14 03:44:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-12-14 03:44:52 (GMT) |
commit | 87f783b6bdbdfe77ba3d92f41f7e0e9cda0de2d4 (patch) | |
tree | 5360eb8deb9fccf2ce09d1fba6cd3b727f56e834 /test/multi.py | |
parent | 415da53eb50ff3efadc22abfeeba1e7eb1042f71 (diff) | |
download | SCons-87f783b6bdbdfe77ba3d92f41f7e0e9cda0de2d4.zip SCons-87f783b6bdbdfe77ba3d92f41f7e0e9cda0de2d4.tar.gz SCons-87f783b6bdbdfe77ba3d92f41f7e0e9cda0de2d4.tar.bz2 |
Make error and warning message consistent. (Anthony Roach)
Diffstat (limited to 'test/multi.py')
-rw-r--r-- | test/multi.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/multi.py b/test/multi.py index 79d463e..8273ecf 100644 --- a/test/multi.py +++ b/test/multi.py @@ -64,7 +64,7 @@ env.B(target = 'foo.out', source = 'bar.in') test.run(arguments='foo.out', status=2, stderr=""" -SCons error: Multiple ways to build the same target were specified for: foo.out +scons: *** Multiple ways to build the same target were specified for: foo.out File "SConstruct", line 10, in ? """) @@ -83,7 +83,7 @@ env.B(target = 'foo.out', source = 'bar.in', foo=2) test.run(arguments='foo.out', status=2, stderr=""" -SCons error: Two different sets of overrides were specified for the same target: foo.out +scons: *** Two different sets of overrides were specified for the same target: foo.out File "SConstruct", line 10, in ? """) @@ -103,7 +103,7 @@ env2.B(target = 'foo.out', source = 'bar.in') test.run(arguments='foo.out', status=2, stderr=""" -SCons error: Two different environments were specified for the same target: foo.out +scons: *** Two different environments were specified for the same target: foo.out File "SConstruct", line 11, in ? """) @@ -141,7 +141,7 @@ env.C(target = 'foo.out', source = 'bar.in') test.run(arguments='foo.out', status=2, stderr=""" -SCons error: Two different builders (B and C) were specified for the same target: foo.out +scons: *** Two different builders (B and C) were specified for the same target: foo.out File "SConstruct", line 14, in ? """) @@ -182,7 +182,7 @@ env.B(target = ['bar.out', 'foo.out'], source = 'bar.in') test.run(arguments='foo.out', status=2, stderr=""" -SCons error: Two different target sets have a target in common: bar.out +scons: *** Two different target sets have a target in common: bar.out File "SConstruct", line 11, in ? """) @@ -209,7 +209,7 @@ env.B(target = ['bar.out', 'blat.out'], source = 'bar.in') test.run(arguments='foo.out', status=2, stderr=""" -SCons error: Two different target sets have a target in common: bar.out +scons: *** Two different target sets have a target in common: bar.out File "SConstruct", line 11, in ? """) @@ -229,7 +229,7 @@ env.B(target = 'foo.out', source = 'bar.in') test.run(arguments='foo.out', status=2, stderr=""" -SCons error: Two different builders (ListBuilder(B) and B) were specified for the same target: foo.out +scons: *** Two different builders (ListBuilder(B) and B) were specified for the same target: foo.out File "SConstruct", line 11, in ? """) |