summaryrefslogtreecommitdiffstats
path: root/test/Alias.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-10-27 11:36:40 (GMT)
committerSteven Knight <knight@baldmt.com>2004-10-27 11:36:40 (GMT)
commitd4e57deb7edf480a8c95542d4dd2afe4e756a137 (patch)
treedd5ca9d95dda271ba13b853f7abc2d82ccaacea8 /test/Alias.py
parentdd9a6d52a84c445b7516fc80b72f2baa3bc8b937 (diff)
downloadSCons-d4e57deb7edf480a8c95542d4dd2afe4e756a137.zip
SCons-d4e57deb7edf480a8c95542d4dd2afe4e756a137.tar.gz
SCons-d4e57deb7edf480a8c95542d4dd2afe4e756a137.tar.bz2
Better test handling of File lines in stack traces. (Chad Austin)
Diffstat (limited to 'test/Alias.py')
-rw-r--r--test/Alias.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Alias.py b/test/Alias.py
index 631aa30..1facd28 100644
--- a/test/Alias.py
+++ b/test/Alias.py
@@ -158,7 +158,11 @@ test.fail_test(not os.path.exists(test.workpath('f1.out')))
test.write('f3.in', "f3.in 3 \n")
test.run(arguments = 'f1.out',
- stdout = test.wrap_stdout('.* build.py f3.out f3.in\n.* build.py f1.out f1.in\n'))
+ match = TestCmd.match_exact,
+ stdout = test.wrap_stdout("""\
+%s build.py f3.out f3.in
+%s build.py f1.out f1.in
+""" % (python, python)))
test.up_to_date(arguments = 'f1.out')