diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-02-29 15:51:11 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-02-29 16:39:54 +0800 |
commit | fb4132881dde7c9b135d713a06a3b64db1f706db (patch) | |
tree | 8a037e9d4cae7ed15360ab0878d14b32ac3150a4 /config/TestUtil.py | |
parent | fixing mode on php/config/Make.rules.mak (diff) | |
download | ice-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-x | config/TestUtil.py | 6 |
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))) |