summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2012-12-21 07:21:53 -0500
committerGary Oberbrunner <garyo@oberbrunner.com>2012-12-21 07:21:53 -0500
commit480db6f087a0cbee844ed4368f627a72f3451091 (patch)
tree6c873ab18acdb6f2525a0192f048bfe987d7f106
parentf4edb08a4af66043bab63386d9c03b2be7c37875 (diff)
downloadscons-git-480db6f087a0cbee844ed4368f627a72f3451091.tar.gz
Fix test/SCONSFLAGS test rot.
-rw-r--r--test/SCONSFLAGS.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SCONSFLAGS.py b/test/SCONSFLAGS.py
index cd3631335..db866e8ac 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()