diff options
author | Jose <jose@zeroc.com> | 2014-11-28 00:10:47 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-11-28 00:10:47 +0100 |
commit | afd471d56a32bfaecba65557e729a86a6781b9eb (patch) | |
tree | bde0c7870ff5829ce6be1bc7565403e605018f7c /scripts/TestUtil.py | |
parent | Fixed (ICE-6022) - IceGrid/simple failure with SSL on Windows 7 x64 with no V... (diff) | |
download | ice-afd471d56a32bfaecba65557e729a86a6781b9eb.tar.bz2 ice-afd471d56a32bfaecba65557e729a86a6781b9eb.tar.xz ice-afd471d56a32bfaecba65557e729a86a6781b9eb.zip |
Fixed (ICE-6006) - Cannot run java (and probably other) tests with no C++ compiler installed
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index ed95b5edb64..9012e29b0fc 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -143,8 +143,10 @@ def getCppCompiler(): elif l.find("Version 18") != -1: compiler = "VC120" else: - print("Cannot detect C++ compiler") - sys.exit(1) + # + # Cannot detect C++ compiler use default + # + compiler = "VC120" return compiler def isMINGW(): |