diff options
author | Steven Knight <knight@baldmt.com> | 2003-09-18 07:43:08 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-09-18 07:43:08 (GMT) |
commit | 727266233825f379a02fc3a32c1fa46d1ffb1fe8 (patch) | |
tree | b4c303b7a82d84c5b1129d5a1f866df672464966 /test/Exit.py | |
parent | 5401afc920c34379547d06db33b77fd076e4ed18 (diff) | |
download | SCons-727266233825f379a02fc3a32c1fa46d1ffb1fe8.zip SCons-727266233825f379a02fc3a32c1fa46d1ffb1fe8.tar.gz SCons-727266233825f379a02fc3a32c1fa46d1ffb1fe8.tar.bz2 |
Have the closing message say ...terminated
Diffstat (limited to 'test/Exit.py')
-rw-r--r-- | test/Exit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Exit.py b/test/Exit.py index 686cdb3..42ae777 100644 --- a/test/Exit.py +++ b/test/Exit.py @@ -119,7 +119,7 @@ test.write(['subdir', 'foo.in'], "subdir/foo.in\n") test.run(status = 27, stdout = test.wrap_stdout("""\ exit_builder("%s", "%s") -""" % (subdir_foo_out, subdir_foo_in)), +""" % (subdir_foo_out, subdir_foo_in), error=1), stderr = """\ scons: *** [%s] Explicit exit, status 27 """ % (subdir_foo_out)) @@ -150,7 +150,7 @@ env.Cat('foo', 'foo.k') test.write('foo.k', "foo.k\n") test.run(status = 37, - stdout = test.wrap_stdout(""), + stdout = test.wrap_stdout("", error=1), stderr = "scons: *** [foo] Explicit exit, status 37\n") # |