diff options
author | Mark Spruiell <mes@zeroc.com> | 2011-05-20 12:36:57 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2011-05-20 12:36:57 -0700 |
commit | e3662c590d6da6cefca863b66be0517957b76f3c (patch) | |
tree | 854c4c00672b1d1df0ec2a073c2a11e3a15f1cf5 /java/test/Ice/properties/run.py | |
parent | minor edits to CHANGES (diff) | |
download | ice-e3662c590d6da6cefca863b66be0517957b76f3c.tar.bz2 ice-e3662c590d6da6cefca863b66be0517957b76f3c.tar.xz ice-e3662c590d6da6cefca863b66be0517957b76f3c.zip |
bug 5104 - fixing run.py for java/test/Ice/properties
Diffstat (limited to 'java/test/Ice/properties/run.py')
-rwxr-xr-x | java/test/Ice/properties/run.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/java/test/Ice/properties/run.py b/java/test/Ice/properties/run.py index b797f216c25..22f2a9903a9 100755 --- a/java/test/Ice/properties/run.py +++ b/java/test/Ice/properties/run.py @@ -33,7 +33,11 @@ TestUtil.createConfig(configPath, "Ice.ProgramName=PropertiesClient", "Config.Path=./config/中国_client.config"]) -TestUtil.simpleTest() +print "starting client...", +clientProc = TestUtil.startClient("test.Ice.properties.Client",startReader=False) +print "ok" +clientProc.startReader() +clientProc.waitTestSuccess() if os.path.exists(configPath): - os.remove(configPath)
\ No newline at end of file + os.remove(configPath) |