diff options
author | Matthew Newhook <matthew@zeroc.com> | 2009-03-12 02:01:55 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2009-03-12 02:01:55 +0800 |
commit | c35697fb275246428b0896af0d995519ec20c476 (patch) | |
tree | 80fc1b158fb8a79dadf2618ff4bb3b9ba2637847 /scripts/IceGridAdmin.py | |
parent | backout bogus change from 3822 (diff) | |
download | ice-c35697fb275246428b0896af0d995519ec20c476.tar.bz2 ice-c35697fb275246428b0896af0d995519ec20c476.tar.xz ice-c35697fb275246428b0896af0d995519ec20c476.zip |
http://bugzilla/bugzilla/show_bug.cgi?id=3808 - odd output in IceGrid/activation test.
Squashed commit of the following:
commit 201ba9220339ff3a1a828b16782bf78d39949ed7
Author: Matthew Newhook <matthew@centosvm4.matthew.zeroc.com>
Date: Thu Mar 12 01:51:20 2009 +0800
Delay the start of the reading thread until "ok" has been printed.
commit a5eadfe584720f93502fffcd08ef40acab5416c6
Author: Matthew Newhook <matthew@centosvm4.matthew.zeroc.com>
Date: Thu Mar 12 00:52:17 2009 +0800
added missing flush.
Diffstat (limited to 'scripts/IceGridAdmin.py')
-rw-r--r-- | scripts/IceGridAdmin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/IceGridAdmin.py b/scripts/IceGridAdmin.py index bb1f7beb3d0..efb2e2a97c9 100644 --- a/scripts/IceGridAdmin.py +++ b/scripts/IceGridAdmin.py @@ -214,8 +214,9 @@ def iceGridTest(application, additionalOptions = "", applicationOptions = ""): print "ok" print "starting client...", - clientProc = TestUtil.startClient(client, clientOptions, TestUtil.DriverConfig("client")) + clientProc = TestUtil.startClient(client, clientOptions, TestUtil.DriverConfig("client"), startReader = False) print "ok" + clientProc.startReader() clientProc.waitTestSuccess() |