diff options
author | Steven Knight <knight@baldmt.com> | 2002-06-20 00:17:18 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-06-20 00:17:18 (GMT) |
commit | 01bba4cf479f99c67dcac6bc50603feccc89c457 (patch) | |
tree | a07099be95dddcfdb438e7b08b780063c8853831 /test | |
parent | 81953156f0c5075d21b9d1573ead1f2e482482a6 (diff) | |
download | SCons-01bba4cf479f99c67dcac6bc50603feccc89c457.zip SCons-01bba4cf479f99c67dcac6bc50603feccc89c457.tar.gz SCons-01bba4cf479f99c67dcac6bc50603feccc89c457.tar.bz2 |
Check in the Tool() interface. (SK and Charles Crain)
Diffstat (limited to 'test')
-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 56738c7..6dcb779 100644 --- a/test/SharedLibrary.py +++ b/test/SharedLibrary.py @@ -48,7 +48,7 @@ Default(env.SharedLibrary(target = 'foo', source = obj)) test.write('SConstructFoo2', """ env=Environment() -obj = env.SharedObject('foo', 'foo.c') +obj = env.SharedObject('bar', 'foo.c') Default(env.Library(target = 'foo', source = obj)) """) @@ -193,7 +193,7 @@ SCons error: Source file: foo\..* is static and is not compatible with shared ta ) test.run(arguments = '-f SConstructFoo2', status=2, stderr=''' -SCons error: Source file: foo\..* is shared and is not compatible with static target: .* +SCons error: Source file: bar\..* is shared and is not compatible with static target: .* ''' ) |