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/exceptions.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/exceptions.py')
-rw-r--r-- | test/exceptions.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/exceptions.py b/test/exceptions.py index b24e581..f21fdfa 100644 --- a/test/exceptions.py +++ b/test/exceptions.py @@ -43,9 +43,10 @@ test.write('foo.in', "foo.in\n") test.run(arguments = "foo.out", stderr = """scons: \*\*\* \[foo.out\] Exception Traceback \((most recent call|innermost) last\): - 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 "SConstruct", line 3, in func raise "func exception" func exception |