diff options
author | Steven Knight <knight@baldmt.com> | 2002-12-17 14:01:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-12-17 14:01:28 (GMT) |
commit | 72d46ff0afa7d688a2029a74b0a0084dcf439ba5 (patch) | |
tree | 82bd4d7ac5f2ad43b3624e4bd51755cf2bd85e4c /test/errors.py | |
parent | 1f839d9933b456ba4ebb5098ce1f9ab01f398a94 (diff) | |
download | SCons-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.py | 13 |
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) |