diff options
author | Steven Knight <knight@baldmt.com> | 2010-06-06 00:48:58 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-06-06 00:48:58 (GMT) |
commit | 5bf482c69d08f5ef89e9cb120ae89872b033b287 (patch) | |
tree | ac058390368dd11f3cdf8fb8b716eb2803b8dd6b /test/runtest/xml | |
parent | 2fc4d8d28cfba093f9d14c4215cee301aa6602c7 (diff) | |
download | SCons-5bf482c69d08f5ef89e9cb120ae89872b033b287.zip SCons-5bf482c69d08f5ef89e9cb120ae89872b033b287.tar.gz SCons-5bf482c69d08f5ef89e9cb120ae89872b033b287.tar.bz2 |
Windows portability fixes in various tests. Fix runtest.py detection
of non-zero exit status on systems that don't have os.WEXITSTATUS().
Diffstat (limited to 'test/runtest/xml')
-rw-r--r-- | test/runtest/xml/output.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/runtest/xml/output.py b/test/runtest/xml/output.py index 7bf6b2d..4702b7e 100644 --- a/test/runtest/xml/output.py +++ b/test/runtest/xml/output.py @@ -34,7 +34,8 @@ import re import TestCmd import TestRuntest -test = TestRuntest.TestRuntest(match = TestCmd.match_re) +test = TestRuntest.TestRuntest(match = TestCmd.match_re, + diff = TestCmd.diff_re) pythonstring = re.escape(TestRuntest.pythonstring) test_fail_py = re.escape(os.path.join('test', 'fail.py')) @@ -89,6 +90,11 @@ expect = """\ </results> """ % locals() +# Just strip carriage returns so the regular expression matching works. +contents = test.read('xml.out') +contents = contents.replace('\r', '') +test.write('xml.out', contents) + test.must_match('xml.out', expect) test.pass_test() |