diff options
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(): |