summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/test/IcePack/deployer/run.py4
-rwxr-xr-xcpp/test/IcePack/simple/run.py6
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)
#