summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2019-01-14 14:26:02 +0100
committerBenoit Foucher <benoit@zeroc.com>2019-01-14 14:26:15 +0100
commit26a2cda75ced927d059408eaadd2cf86789f802e (patch)
treeddb5689c41cce8af4dd84b3b90ef6d1953a9ba07 /scripts/Util.py
parentGCC 8 Build fixes for Python, PHP and Ruby (diff)
downloadice-26a2cda75ced927d059408eaadd2cf86789f802e.tar.bz2
ice-26a2cda75ced927d059408eaadd2cf86789f802e.tar.xz
ice-26a2cda75ced927d059408eaadd2cf86789f802e.zip
Enable tracing for allTests.py to investigate iOS failures
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index 0629141a9d3..2fadcf369e9 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -2960,9 +2960,10 @@ class Driver:
initData.properties.setProperty("IceDiscovery.Interface", self.interface)
initData.properties.setProperty("Ice.Default.Host", self.interface)
initData.properties.setProperty("Ice.ThreadPool.Server.Size", "10")
- # initData.properties.setProperty("Ice.Trace.Protocol", "1")
- # initData.properties.setProperty("Ice.Trace.Network", "3")
- # initData.properties.setProperty("Ice.StdErr", "allTests.log")
+ initData.properties.setProperty("Ice.Trace.Protocol", "1")
+ initData.properties.setProperty("Ice.Trace.Network", "2")
+ if os.path.exists("allTests.log"): os.unlink("allTests.log")
+ initData.properties.setProperty("Ice.StdErr", "allTests.log")
initData.properties.setProperty("Ice.Override.Timeout", "10000")
initData.properties.setProperty("Ice.Override.ConnectTimeout", "1000")
self.communicator = Ice.initialize(initData)