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/SharedLibrary.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/SharedLibrary.py')
-rw-r--r-- | test/SharedLibrary.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SharedLibrary.py b/test/SharedLibrary.py index d54dba4..8659637 100644 --- a/test/SharedLibrary.py +++ b/test/SharedLibrary.py @@ -192,12 +192,12 @@ test.run(program = test.workpath('prog'), stdout = "f1.c\nf2a.c\nf2b.c\nf2c.c\nf3a.c\nf3b.c\nf3c.c\nprog.c\n") test.run(arguments = '-f SConstructFoo', status=2, stderr=''' -SCons error: Source file: foo\..* is static and is not compatible with shared target: .* +scons: \*\*\* Source file: foo\..* is static and is not compatible with shared target: .* ''' ) test.run(arguments = '-f SConstructFoo2', status=2, stderr=''' -SCons error: Source file: bar\..* is shared and is not compatible with static target: .* +scons: \*\*\* Source file: bar\..* is shared and is not compatible with static target: .* ''' ) |