diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-02-17 18:51:31 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-02-17 18:51:31 +0100 |
commit | a045d390759986c8cb73b826e8903099de3f8ec9 (patch) | |
tree | 0c68055ad3e15af0aab54b1bc8351b51fd22c8ad /scripts/TestUtil.py | |
parent | Fixed bug 3732 - bogus startService method implementation (diff) | |
download | ice-a045d390759986c8cb73b826e8903099de3f8ec9.tar.bz2 ice-a045d390759986c8cb73b826e8903099de3f8ec9.tar.xz ice-a045d390759986c8cb73b826e8903099de3f8ec9.zip |
Changed TestUtil.startServer to set echo = True by default
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 23424f42b66..9eacefd7e8f 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -916,7 +916,7 @@ def startClient(exe, args = "", config=None, env=None, echo = True): return spawnClient(cmd, echo = echo) -def startServer(exe, args = "", config=None, env=None, adapter = None, count = 1, echo = False): +def startServer(exe, args = "", config=None, env=None, adapter = None, count = 1, echo = True): if config == None: config = DriverConfig("server") cmd = getCommandLine(exe, config, env) + ' ' + args |