diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-12-21 12:21:53 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2012-12-21 12:21:53 (GMT) |
commit | 480db6f087a0cbee844ed4368f627a72f3451091 (patch) | |
tree | 6c873ab18acdb6f2525a0192f048bfe987d7f106 /test/SCONSFLAGS.py | |
parent | f4edb08a4af66043bab63386d9c03b2be7c37875 (diff) | |
download | SCons-480db6f087a0cbee844ed4368f627a72f3451091.zip SCons-480db6f087a0cbee844ed4368f627a72f3451091.tar.gz SCons-480db6f087a0cbee844ed4368f627a72f3451091.tar.bz2 |
Fix test/SCONSFLAGS test rot.
Diffstat (limited to 'test/SCONSFLAGS.py')
-rw-r--r-- | test/SCONSFLAGS.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SCONSFLAGS.py b/test/SCONSFLAGS.py index cd36313..db866e8 100644 --- a/test/SCONSFLAGS.py +++ b/test/SCONSFLAGS.py @@ -67,11 +67,11 @@ os.environ['SCONSFLAGS'] = '-Z' expect = r"""usage: scons [OPTION] [TARGET] ... -SCons error: no such option: -Z +SCons Error: no such option: -Z """ test.run(arguments = "-H", status = 2, - stderr = TestSCons.re_escape(expect)) + stderr = expect, match=TestSCons.match_exact) test.pass_test() |