diff options
author | Benoit Foucher <benoit@zeroc.com> | 2004-02-19 16:28:13 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2004-02-19 16:28:13 +0000 |
commit | 7ad7562f584adec86ab71c0bcf6da3e867c14ea8 (patch) | |
tree | 443ac399bf61bf051b3bde3163acfcf220568a18 /cpp | |
parent | IcePack fixes (diff) | |
download | ice-7ad7562f584adec86ab71c0bcf6da3e867c14ea8.tar.bz2 ice-7ad7562f584adec86ab71c0bcf6da3e867c14ea8.tar.xz ice-7ad7562f584adec86ab71c0bcf6da3e867c14ea8.zip |
Fix
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/test/IcePack/deployer/run.py | 4 | ||||
-rwxr-xr-x | cpp/test/IcePack/simple/run.py | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/IcePack/deployer/run.py b/cpp/test/IcePack/deployer/run.py index f2d577f9fcb..060e5e36b3d 100755 --- a/cpp/test/IcePack/deployer/run.py +++ b/cpp/test/IcePack/deployer/run.py @@ -92,8 +92,8 @@ print "ok" # Shutdown IcePack. # IcePackAdmin.shutdownIcePackNode() -icepackNodeThread.join() +icePackNodeThread.join() IcePackAdmin.shutdownIcePackRegistry() -icepackRegistryThread.join() +icePackRegistryThread.join() sys.exit(0) diff --git a/cpp/test/IcePack/simple/run.py b/cpp/test/IcePack/simple/run.py index c11f4cf18d7..28b0fa02a7b 100755 --- a/cpp/test/IcePack/simple/run.py +++ b/cpp/test/IcePack/simple/run.py @@ -52,7 +52,7 @@ TestUtil.mixedClientServerTestWithOptions(name, additionalServerOptions, additio # Shutdown the registry. # IcePackAdmin.shutdownIcePackRegistry() -icepackRegistryThread.join() +icePackRegistryThread.join() IcePackAdmin.cleanDbDir(os.path.join(testdir, "db")) @@ -88,8 +88,8 @@ IcePackAdmin.removeServer("server"); print "ok" IcePackAdmin.shutdownIcePackNode() -icepackNodeThread.join() +icePackNodeThread.join() IcePackAdmin.shutdownIcePackRegistry() -icepackRegistryThread.join() +icePackRegistryThread.join() sys.exit(0) |