diff options
Diffstat (limited to 'test/MSVC/hierarchical.py')
-rw-r--r-- | test/MSVC/hierarchical.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/MSVC/hierarchical.py b/test/MSVC/hierarchical.py index f130806..72e5813 100644 --- a/test/MSVC/hierarchical.py +++ b/test/MSVC/hierarchical.py @@ -38,6 +38,10 @@ if sys.platform != 'win32': msg = "Skipping Visual C/C++ test on non-Windows platform '%s'\n" % sys.platform test.skip_test(msg) +import SCons.Tool.MSCommon as msc +if not msc.msvc_exists(): + msg = "No MSVC toolchain found...skipping test\n" + test.skip_test(msg) test.subdir('src', 'build', 'out') |