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
commit42dda8223a0eaef419978ed929e4fb36d03b1c44 (patch)
tree823c1a33d8bceb77620996233b7fe402df6f0e54
parent7120265b1ae307e046b061f175ded16de5d710fa (diff)
downloadscons-42dda8223a0eaef419978ed929e4fb36d03b1c44.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 cd363133..db866e8a 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()