summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-06-20 00:17:18 (GMT)
committerSteven Knight <knight@baldmt.com>2002-06-20 00:17:18 (GMT)
commit01bba4cf479f99c67dcac6bc50603feccc89c457 (patch)
treea07099be95dddcfdb438e7b08b780063c8853831 /test
parent81953156f0c5075d21b9d1573ead1f2e482482a6 (diff)
downloadSCons-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.py4
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: .*
'''
)