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/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/errors.py')
-rw-r--r-- | test/errors.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/errors.py b/test/errors.py index 0f83e64..979c6e1 100644 --- a/test/errors.py +++ b/test/errors.py @@ -71,7 +71,7 @@ a ! x """) test.run(arguments='-f SConstruct1', - stdout = "", + stdout = "scons: Reading SConscript files ...\n", stderr = """ File "SConstruct1", line 2 a ! x @@ -90,7 +90,7 @@ raise SCons.Errors.UserError, 'Depends() require both sources and targets.' """) test.run(arguments='-f SConstruct2', - stdout = "", + stdout = "scons: Reading SConscript files ...\n", stderr = """ SCons error: Depends\(\) require both sources and targets. File "SConstruct2", line 4, in \? @@ -103,7 +103,7 @@ raise InternalError, 'error inside' """) test.run(arguments='-f SConstruct3', - stdout = "other errors\n", + stdout = "scons: Reading SConscript files ...\nother errors\n", stderr = r"""Traceback \((most recent call|innermost) last\): File ".+", line \d+, in .+ File ".+", line \d+, in .+ |