diff options
author | Benoit Foucher <benoit@zeroc.com> | 2004-02-19 19:19:23 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2004-02-19 19:19:23 +0000 |
commit | 6213044b57b0a57ab4cebbcfb8cd51a0d68783a9 (patch) | |
tree | 229a20e02e0315ca290d0ce3d239bdc4c1da4b39 /cpp | |
parent | Re-enabled IcePack test, disable deployer test on Windows (diff) | |
download | ice-6213044b57b0a57ab4cebbcfb8cd51a0d68783a9.tar.bz2 ice-6213044b57b0a57ab4cebbcfb8cd51a0d68783a9.tar.xz ice-6213044b57b0a57ab4cebbcfb8cd51a0d68783a9.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 802af8af8b1..a4ffcafe7cf 100755 --- a/cpp/test/IcePack/deployer/run.py +++ b/cpp/test/IcePack/deployer/run.py @@ -42,7 +42,7 @@ def startClient(options): global testdir fullClientOptions = TestUtil.clientOptions + \ - " --Ice.Default.Locator=\"IcePack/Locator:default -p 12346\" " + \ + " --Ice.Default.Locator=\"IcePack/Locator:default -p 12345\" " + \ options print "starting client...", @@ -59,7 +59,7 @@ def startClient(options): # Start IcePack. # IcePackAdmin.cleanDbDir(os.path.join(testdir, "db")) -icePackRegistryThread = IcePackAdmin.startIcePackRegistry("12346", testdir) +icePackRegistryThread = IcePackAdmin.startIcePackRegistry("12345", testdir) icePackNodeThread = IcePackAdmin.startIcePackNode(testdir) # diff --git a/cpp/test/IcePack/simple/run.py b/cpp/test/IcePack/simple/run.py index 28b0fa02a7b..56a456a38d6 100755 --- a/cpp/test/IcePack/simple/run.py +++ b/cpp/test/IcePack/simple/run.py @@ -33,14 +33,14 @@ testdir = os.path.join(toplevel, "test", name) # Add locator options for the client and server. Since the server # invokes on the locator it's also considered to be a client. # -additionalOptions = " --Ice.Default.Locator=\"IcePack/Locator:default -p 12346\"" +additionalOptions = " --Ice.Default.Locator=\"IcePack/Locator:default -p 12345\"" IcePackAdmin.cleanDbDir(os.path.join(testdir, "db")) # # Start IcePack registry. # -icePackRegistryThread = IcePackAdmin.startIcePackRegistry("12346", testdir) +icePackRegistryThread = IcePackAdmin.startIcePackRegistry("12345", testdir) # # Test client/server without on demand activation. @@ -59,7 +59,7 @@ IcePackAdmin.cleanDbDir(os.path.join(testdir, "db")) # # Start IcePack registry and a node. # -icePackRegistryThread = IcePackAdmin.startIcePackRegistry("12346", testdir) +icePackRegistryThread = IcePackAdmin.startIcePackRegistry("12345", testdir) icePackNodeThread = IcePackAdmin.startIcePackNode(testdir) # |