summaryrefslogtreecommitdiffstats
path: root/test/errors.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-12-17 14:01:28 (GMT)
committerSteven Knight <knight@baldmt.com>2002-12-17 14:01:28 (GMT)
commit72d46ff0afa7d688a2029a74b0a0084dcf439ba5 (patch)
tree82bd4d7ac5f2ad43b3624e4bd51755cf2bd85e4c /test/errors.py
parent1f839d9933b456ba4ebb5098ce1f9ab01f398a94 (diff)
downloadSCons-72d46ff0afa7d688a2029a74b0a0084dcf439ba5.zip
SCons-72d46ff0afa7d688a2029a74b0a0084dcf439ba5.tar.gz
SCons-72d46ff0afa7d688a2029a74b0a0084dcf439ba5.tar.bz2
Refactor action execution so it's controlled by the interface-specific Taskmaster.Task class, not Node.build().
Diffstat (limited to 'test/errors.py')
-rw-r--r--test/errors.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/test/errors.py b/test/errors.py
index 17ac8eb..a79ed6e 100644
--- a/test/errors.py
+++ b/test/errors.py
@@ -54,12 +54,13 @@ env.exit('exit.out', 'exit.in')
stderr = """scons: \*\*\* \[exit.out\] Exception
Traceback \((most recent call|innermost) last\):
- File ".+", line \d+, in .+
- File ".+", line \d+, in .+
- File ".+", line \d+, in .+
- File ".+", line \d+, in .+
- .+
-.+
+ File ".+", line \d+, in \S+
+ [^\n]+
+ File ".+", line \d+, in \S+
+ [^\n]+
+ File ".+", line \d+, in \S+
+ [^\n]+
+\S.+
"""
test.run(arguments='foo.out exit.out', stderr=stderr, status=2)