diff options
author | Daniel Moody <dmoody256@gmail.com> | 2019-01-09 16:20:17 (GMT) |
---|---|---|
committer | Daniel Moody <dmoody256@gmail.com> | 2019-01-09 16:22:58 (GMT) |
commit | f8de931ad51d8f81770c47c7ba6259eccaee0503 (patch) | |
tree | c2af1288e6cb1bb3616c4198e22ed25e768dc3c7 /testing | |
parent | 39bdae14fbee3f7c724ec64b38f117849cbebeda (diff) | |
download | SCons-f8de931ad51d8f81770c47c7ba6259eccaee0503.zip SCons-f8de931ad51d8f81770c47c7ba6259eccaee0503.tar.gz SCons-f8de931ad51d8f81770c47c7ba6259eccaee0503.tar.bz2 |
reverted tests so they can use a default host == target platform for find msvc
fixed some other tests
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py index 01002c5..b543c07 100644 --- a/testing/framework/TestSCons.py +++ b/testing/framework/TestSCons.py @@ -1072,7 +1072,7 @@ SConscript( sconscript ) try: import SCons.Tool.MSCommon as msc - if not msc.msvc_exists(self.Environment()): + if not msc.msvc_exists(): msg = "No MSVC toolchain found...skipping test\n" self.skip_test(msg) except: |