diff options
author | Steven Knight <knight@baldmt.com> | 2001-11-27 14:14:32 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-11-27 14:14:32 (GMT) |
commit | f5b84fd3af7d8e3b3d4570dcf40220c96f67d16e (patch) | |
tree | dbeb23a7c37cba6af6bd53fd6d985d65d34d98fd /test/errors.py | |
parent | 378373defaf150feb90cd54d13626516c6dbe1b4 (diff) | |
download | SCons-f5b84fd3af7d8e3b3d4570dcf40220c96f67d16e.zip SCons-f5b84fd3af7d8e3b3d4570dcf40220c96f67d16e.tar.gz SCons-f5b84fd3af7d8e3b3d4570dcf40220c96f67d16e.tar.bz2 |
Move most of the code from the scons script into a SCons module.
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 b973f37..abf2a28 100644 --- a/test/errors.py +++ b/test/errors.py @@ -64,9 +64,9 @@ raise InternalError, 'error inside' test.run(arguments='-f SConstruct3', stdout = "other errors\n", stderr = r"""Traceback \((most recent call|innermost) last\): - File ".*scons(\.py)?", line \d+, in \? - main\(\) - File ".*scons(\.py)?", line \d+, in main + File ".*Script.py", line \d+, in main + _main\(\) + File ".*Script.py", line \d+, in _main exec file in globals\(\) File "SConstruct3", line \d+, in \? raise InternalError, 'error inside' |