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/build-errors.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/build-errors.py')
-rw-r--r-- | test/build-errors.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/build-errors.py b/test/build-errors.py index 9acbefb..1ea2d7a 100644 --- a/test/build-errors.py +++ b/test/build-errors.py @@ -48,7 +48,7 @@ env.bld(target = 'f1', source = 'f1.in') """ % string.replace(no_such_file, '\\', '\\\\')) test.run(arguments='-f SConstruct1 .', - stdout = test.wrap_stdout("%s f1.in f1\n" % no_such_file), + stdout = test.wrap_stdout("%s f1.in f1\n" % no_such_file, error=1), stderr = None, status = 2) @@ -131,7 +131,7 @@ env.bld(target = 'f2', source = 'f2.in') """ % string.replace(not_executable, '\\', '\\\\')) test.run(arguments='-f SConstruct2 .', - stdout = test.wrap_stdout("%s f2.in f2\n" % not_executable), + stdout = test.wrap_stdout("%s f2.in f2\n" % not_executable, error=1), stderr = None, status = 2) @@ -163,7 +163,7 @@ env.bld(target = 'f3', source = 'f3.in') """ % string.replace(test.workdir, '\\', '\\\\')) test.run(arguments='-f SConstruct3 .', - stdout = test.wrap_stdout("%s f3.in f3\n" % test.workdir), + stdout = test.wrap_stdout("%s f3.in f3\n" % test.workdir, error=1), stderr = None, status = 2) |