diff options
author | Steven Knight <knight@baldmt.com> | 2002-09-30 16:53:47 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-09-30 16:53:47 (GMT) |
commit | 752502105f63c91ee1f87cc35b83634c6bc42c3b (patch) | |
tree | 0b603afdbd7d32b8aa3e7482dc72badf69345874 /test/build-errors.py | |
parent | f6141b3f503c8f78fca191bfd59d9785cd81bf10 (diff) | |
download | SCons-752502105f63c91ee1f87cc35b83634c6bc42c3b.zip SCons-752502105f63c91ee1f87cc35b83634c6bc42c3b.tar.gz SCons-752502105f63c91ee1f87cc35b83634c6bc42c3b.tar.bz2 |
Add output to tell people when we're reading SConscript files versus when we're building targets.
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 956842e..94f8820 100644 --- a/test/build-errors.py +++ b/test/build-errors.py @@ -47,7 +47,7 @@ env.bld(target = 'f1', source = 'f1.in') """ % string.replace(no_such_file, '\\', '\\\\')) test.run(arguments='-f SConstruct1 .', - stdout = "%s f1.in f1\n" % no_such_file, + stdout = test.wrap_stdout("%s f1.in f1\n" % no_such_file), stderr = None, status = 2) @@ -84,7 +84,7 @@ env.bld(target = 'f2', source = 'f2.in') """ % string.replace(not_executable, '\\', '\\\\')) test.run(arguments='-f SConstruct2 .', - stdout = "%s f2.in f2\n" % not_executable, + stdout = test.wrap_stdout("%s f2.in f2\n" % not_executable), stderr = None, status = 2) @@ -108,7 +108,7 @@ env.bld(target = 'f3', source = 'f3.in') """ % string.replace(test.workdir, '\\', '\\\\')) test.run(arguments='-f SConstruct3 .', - stdout = "%s f3.in f3\n" % test.workdir, + stdout = test.wrap_stdout("%s f3.in f3\n" % test.workdir), stderr = None, status = 2) |