diff options
author | Mark Spruiell <mes@zeroc.com> | 2014-07-29 16:59:58 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2014-07-29 16:59:58 -0700 |
commit | a1d46a0076e76578870f08789f0481f3eec5d0ad (patch) | |
tree | 33cef31bf87e29c0d7e2a8f5241b5fc067eeab5d /scripts/TestUtil.py | |
parent | Added missing sync to ConnectRequestHandler.getConnection (diff) | |
download | ice-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-x | scripts/TestUtil.py | 2 |
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: |