summaryrefslogtreecommitdiff
path: root/config/TestUtil.py
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2008-02-29 15:51:11 +0800
committerMatthew Newhook <matthew@zeroc.com>2008-02-29 16:39:54 +0800
commitfb4132881dde7c9b135d713a06a3b64db1f706db (patch)
tree8a037e9d4cae7ed15360ab0878d14b32ac3150a4 /config/TestUtil.py
parentfixing mode on php/config/Make.rules.mak (diff)
downloadice-fb4132881dde7c9b135d713a06a3b64db1f706db.tar.bz2
ice-fb4132881dde7c9b135d713a06a3b64db1f706db.tar.xz
ice-fb4132881dde7c9b135d713a06a3b64db1f706db.zip
Merge HA IceStorm branch.
- http://bugzilla/bugzilla/show_bug.cgi?id=2706 - http://bugzilla/bugzilla/show_bug.cgi?id=2705
Diffstat (limited to 'config/TestUtil.py')
-rwxr-xr-xconfig/TestUtil.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/TestUtil.py b/config/TestUtil.py
index 4a23459965c..09d776e539e 100755
--- a/config/TestUtil.py
+++ b/config/TestUtil.py
@@ -1069,21 +1069,21 @@ def startClient(exe, args, config=None, env=getTestEnv()):
tmpini.write("extension=%s\n" % phpExtension)
tmpini.close()
- return os.popen(getCommandLine(exe, config, env) + args)
+ return os.popen(getCommandLine(exe, config, env) + args + " 2>&1")
def startServer(exe, args, config=None, env=getTestEnv()):
if config == None:
config = DriverConfig("server")
if debug:
print "(" + getCommandLine(exe, config, env) + args + ")",
- return os.popen(getCommandLine(exe, config, env) + args)
+ return os.popen(getCommandLine(exe, config, env) + args + " 2>&1")
def startColloc(exe, args, config=None, env=getTestEnv()):
if config == None:
config = DriverConfig("colloc")
if debug:
print "(" + getCommandLine(exe, config, env) + args + ")",
- return os.popen(getCommandLine(exe, config, env) + args)
+ return os.popen(getCommandLine(exe, config, env) + args + " 2>&1")
def getMappingDir(currentDir):
return os.path.abspath(os.path.join(findTopLevel(), getDefaultMapping(currentDir)))