summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorDaniel Moody <dmoody256@gmail.com>2019-01-09 16:20:17 (GMT)
committerDaniel Moody <dmoody256@gmail.com>2019-01-09 16:22:58 (GMT)
commitf8de931ad51d8f81770c47c7ba6259eccaee0503 (patch)
treec2af1288e6cb1bb3616c4198e22ed25e768dc3c7 /testing
parent39bdae14fbee3f7c724ec64b38f117849cbebeda (diff)
downloadSCons-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.py2
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: