summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2014-11-24 15:28:25 -0330
committerDwayne Boone <dwayne@zeroc.com>2014-11-24 15:28:25 -0330
commit7d460aa2a3070c6a7c6d3ddd898944feac751864 (patch)
treed8aa938773863b8cb4ba31a4486a57755f17508e /scripts/TestUtil.py
parentFix to not run the ami test with --compress (diff)
downloadice-7d460aa2a3070c6a7c6d3ddd898944feac751864.tar.bz2
ice-7d460aa2a3070c6a7c6d3ddd898944feac751864.tar.xz
ice-7d460aa2a3070c6a7c6d3ddd898944feac751864.zip
Remove debug tracing
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index f7d42fbaf4c..aaafc770959 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -737,7 +737,7 @@ def getIceBox():
if x86:
iceBox += "32"
if cpp11:
- iceBox += "++11"
+ iceBox += "++11"
iceBox = os.path.join(getCppBinDir(lang), iceBox)
if not os.path.exists(iceBox):
@@ -1053,7 +1053,6 @@ def getCommandLine(exe, config, options = ""):
output.write("-d64 ")
if not config.ipv6:
output.write("-Djava.net.preferIPv4Stack=true ")
- print ("library path %s" % getJavaLibraryPath())
output.write(getJavaLibraryPath())
output.write(exe + " ")
elif config.lang == "py":
@@ -2145,11 +2144,11 @@ def runTests(start, expanded, num = 0, script = False):
if isVC100() and "novc100" in config:
print("%s*** test not supported with VC++ 10.0%s" % (prefix, suffix))
continue
-
+
if cpp11 and "noc++11" in config:
print("%s*** test not supported with C++11%s" % (prefix, suffix))
continue
-
+
if x86 and iceHome and "nomultiarch" in config:
print("%s*** test not supported with x86 in multiarch%s" % (prefix, suffix))
continue