summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2014-07-29 16:59:58 -0700
committerMark Spruiell <mes@zeroc.com>2014-07-29 16:59:58 -0700
commita1d46a0076e76578870f08789f0481f3eec5d0ad (patch)
tree33cef31bf87e29c0d7e2a8f5241b5fc067eeab5d /scripts/TestUtil.py
parentAdded missing sync to ConnectRequestHandler.getConnection (diff)
downloadice-a1d46a0076e76578870f08789f0481f3eec5d0ad.tar.bz2
ice-a1d46a0076e76578870f08789f0481f3eec5d0ad.tar.xz
ice-a1d46a0076e76578870f08789f0481f3eec5d0ad.zip
adding -n option for PHP tests to eliminate warnings
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index af626c73bc0..c45d3fb650f 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -972,7 +972,7 @@ def getCommandLine(exe, config, options = ""):
elif config.lang == "py":
output.write(sys.executable + ' "%s" ' % exe)
elif config.lang == "php" and config.type == "client":
- output.write(phpCmd + " -c tmp.ini -f \""+ exe +"\" -- ")
+ output.write(phpCmd + " -n -c tmp.ini -f \""+ exe +"\" -- ")
elif config.lang == "js":
output.write('node "%s" ' % exe)
elif config.lang == "cpp" and config.valgrind: