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/VariantDir | |
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/VariantDir')
-rw-r--r-- | test/VariantDir/reflect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/VariantDir/reflect.py b/test/VariantDir/reflect.py index e7ff6db..ea5689a 100644 --- a/test/VariantDir/reflect.py +++ b/test/VariantDir/reflect.py @@ -41,7 +41,7 @@ import TestSCons test = TestSCons.TestSCons() _python_ = TestSCons._python_ -re_python = re.escape(TestSCons.python) +re_python = re.escape(TestSCons._python_) test.write("mycc.py", """ print 'Compile' |