summaryrefslogtreecommitdiffstats
path: root/test/option--warn.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-10-27 11:41:39 (GMT)
committerSteven Knight <knight@baldmt.com>2004-10-27 11:41:39 (GMT)
commit8ed4077009fe3968bc9ce1567e95694a47fa41a8 (patch)
treedab09973fc23aa9a9a3e2a386f575bc913f938e4 /test/option--warn.py
parentd4e57deb7edf480a8c95542d4dd2afe4e756a137 (diff)
downloadSCons-8ed4077009fe3968bc9ce1567e95694a47fa41a8.zip
SCons-8ed4077009fe3968bc9ce1567e95694a47fa41a8.tar.gz
SCons-8ed4077009fe3968bc9ce1567e95694a47fa41a8.tar.bz2
Restore tests to current status after "updating" to old change.
Diffstat (limited to 'test/option--warn.py')
-rw-r--r--test/option--warn.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option--warn.py b/test/option--warn.py
index 20d274b..62245ab 100644
--- a/test/option--warn.py
+++ b/test/option--warn.py
@@ -123,7 +123,7 @@ test.write('file1b.in', 'file1b.in\n')
test.run(arguments='file1.out',
stderr=r"""
scons: warning: Two different environments were specified for target file1.out,
- but they appear to have the same action: build\(\["file1.out"\], \["file1b.in"\]\)
+ but they appear to have the same action: build\(target, source, env\)
""" + TestSCons.file_expr)
test.must_match('file1.out', "file1a.in\nfile1b.in\n")
@@ -131,7 +131,7 @@ test.must_match('file1.out', "file1a.in\nfile1b.in\n")
test.run(arguments='--warn=duplicate-environment file1.out',
stderr=r"""
scons: warning: Two different environments were specified for target file1.out,
- but they appear to have the same action: build\(\["file1.out"\], \["file1b.in"\]\)
+ but they appear to have the same action: build\(target, source, env\)
""" + TestSCons.file_expr)
test.run(arguments='--warn=no-duplicate-environment file1.out')