diff options
author | Jose <jose@zeroc.com> | 2014-12-09 16:40:02 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-09 16:40:02 +0100 |
commit | 61937bd2f3dd29fd8f8f67634ee6eab845f50666 (patch) | |
tree | 1ac6f67300a79e06094532a6ce5b89a277a18bd0 /scripts/TestUtil.py | |
parent | Only set binsufix for Linux (diff) | |
download | ice-61937bd2f3dd29fd8f8f67634ee6eab845f50666.tar.bz2 ice-61937bd2f3dd29fd8f8f67634ee6eab845f50666.tar.xz ice-61937bd2f3dd29fd8f8f67634ee6eab845f50666.zip |
Fix getIceBox in TestUtil.py
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index ee54840a045..cba162fdf9a 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -777,10 +777,6 @@ def getIceBox(): if cpp11: iceBox += "++11" iceBox = os.path.join(getCppBinDir(lang), iceBox) - - if not os.path.exists(iceBox): - print("couldn't find icebox executable to run the test in `%s'" % iceBox) - sys.exit(0) elif lang == "java": iceBox = "IceBox.Server" elif lang == "cs": @@ -789,10 +785,6 @@ def getIceBox(): else: iceBox = os.path.join(getIceDir("cs"), "bin", "iceboxnet") - if iceBox == "": - print("couldn't find icebox executable to run the test") - sys.exit(0) - return iceBox def getIceBoxAdmin(): |