diff options
author | Steven Knight <knight@baldmt.com> | 2002-02-05 20:08:29 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-02-05 20:08:29 (GMT) |
commit | f6c20c8f66928d7d9845717cca12770dbfc86a59 (patch) | |
tree | 279913aaaa33e5ec28f3699a4a3c894336f56e87 /test/exceptions.py | |
parent | ac9aa00b71169ab6d275ee6990248e1778bcf456 (diff) | |
download | SCons-f6c20c8f66928d7d9845717cca12770dbfc86a59.zip SCons-f6c20c8f66928d7d9845717cca12770dbfc86a59.tar.gz SCons-f6c20c8f66928d7d9845717cca12770dbfc86a59.tar.bz2 |
Make scons return a failure code when a Builder fails (Anthony Roach)
Diffstat (limited to 'test/exceptions.py')
-rw-r--r-- | test/exceptions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/exceptions.py b/test/exceptions.py index 2c6ad2d..acfe9dd 100644 --- a/test/exceptions.py +++ b/test/exceptions.py @@ -52,5 +52,6 @@ Traceback \((most recent call|innermost) last\): File "SConstruct", line 3, in func raise "func exception" func exception -""") +""", status = 2) + test.pass_test() |