summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/test/IceStorm/federation/run.py3
-rwxr-xr-xcpp/test/IceStorm/federation2/run.py3
-rwxr-xr-xcpp/test/IceStorm/single/run.py3
-rwxr-xr-xcpp/test/Yellow/basicYellow/run.py3
4 files changed, 4 insertions, 8 deletions
diff --git a/cpp/test/IceStorm/federation/run.py b/cpp/test/IceStorm/federation/run.py
index 665df888c2b..cb821a2f779 100755
--- a/cpp/test/IceStorm/federation/run.py
+++ b/cpp/test/IceStorm/federation/run.py
@@ -33,7 +33,6 @@ updatedClientOptions = TestUtil.clientOptions.replace("TOPLEVELDIR", toplevel)
updatedClientServerOptions = TestUtil.clientServerOptions.replace("TOPLEVELDIR", toplevel)
iceBoxEndpoints=' --IceBox.ServiceManager.Endpoints="default -p 12345"'
-iceBoxReference=' --IceBox.ServiceManager="ServiceManager: default -p 12345"'
iceStormService=" --IceBox.Service.IceStorm=IceStormService:create" + \
' --IceStorm.TopicManager.Endpoints="default -p 12346"' + \
@@ -168,7 +167,7 @@ print "ok"
# Shutdown icestorm.
#
print "shutting down icestorm service...",
-command = iceBoxAdmin + updatedClientOptions + iceBoxReference + r' shutdown'
+command = iceBoxAdmin + updatedClientOptions + iceBoxEndpoints + r' shutdown'
iceBoxAdminPipe = os.popen(command)
iceBoxAdminStatus = iceBoxAdminPipe.close()
if iceBoxAdminStatus:
diff --git a/cpp/test/IceStorm/federation2/run.py b/cpp/test/IceStorm/federation2/run.py
index 96aa71dcb24..d4c2bd8d3af 100755
--- a/cpp/test/IceStorm/federation2/run.py
+++ b/cpp/test/IceStorm/federation2/run.py
@@ -33,7 +33,6 @@ updatedClientOptions = TestUtil.clientOptions.replace("TOPLEVELDIR", toplevel)
updatedClientServerOptions = TestUtil.clientServerOptions.replace("TOPLEVELDIR", toplevel)
iceBoxEndpoints=' --IceBox.ServiceManager.Endpoints="default -p 12345"'
-iceBoxReference=' --IceBox.ServiceManager="ServiceManager: default -p 12345"'
iceStormService=" --IceBox.Service.IceStorm=IceStormService:create" + \
' --IceStorm.TopicManager.Endpoints="default -p 12346"' + \
@@ -163,7 +162,7 @@ print "ok"
# Shutdown icestorm.
#
print "shutting down icestorm service...",
-command = iceBoxAdmin + updatedClientOptions + iceBoxReference + r' shutdown'
+command = iceBoxAdmin + updatedClientOptions + iceBoxEndpoints + r' shutdown'
iceBoxAdminPipe = os.popen(command)
iceBoxAdminStatus = iceBoxAdminPipe.close()
if iceBoxAdminStatus:
diff --git a/cpp/test/IceStorm/single/run.py b/cpp/test/IceStorm/single/run.py
index ecf13ec84d5..762ff06609d 100755
--- a/cpp/test/IceStorm/single/run.py
+++ b/cpp/test/IceStorm/single/run.py
@@ -33,7 +33,6 @@ updatedClientOptions = TestUtil.clientOptions.replace("TOPLEVELDIR", toplevel)
updatedClientServerOptions = TestUtil.clientServerOptions.replace("TOPLEVELDIR", toplevel)
iceBoxEndpoints=' --IceBox.ServiceManager.Endpoints="default -p 12345"'
-iceBoxReference=' --IceBox.ServiceManager="ServiceManager: default -p 12345"'
iceStormService=" --IceBox.Service.IceStorm=IceStormService:create" + \
' --IceStorm.TopicManager.Endpoints="default -p 12346"' + \
@@ -130,7 +129,7 @@ print "ok"
# Shutdown icestorm.
#
print "shutting down icestorm service...",
-command = iceBoxAdmin + updatedClientOptions + iceBoxReference + r' shutdown'
+command = iceBoxAdmin + updatedClientOptions + iceBoxEndpoints + r' shutdown'
iceBoxAdminPipe = os.popen(command)
iceBoxAdminStatus = iceBoxAdminPipe.close()
if iceBoxAdminStatus:
diff --git a/cpp/test/Yellow/basicYellow/run.py b/cpp/test/Yellow/basicYellow/run.py
index fb24061df4a..177614e0ac5 100755
--- a/cpp/test/Yellow/basicYellow/run.py
+++ b/cpp/test/Yellow/basicYellow/run.py
@@ -32,7 +32,6 @@ updatedClientOptions = TestUtil.clientOptions.replace("TOPLEVELDIR", toplevel)
updatedClientServerOptions = TestUtil.clientServerOptions.replace("TOPLEVELDIR", toplevel)
IceBoxEndpoints=' --IceBox.ServiceManager.Endpoints="default -p 12345"'
-IceBoxReference=' --IceBox.ServiceManager="ServiceManager:default -p 12345"'
YellowService=" --IceBox.Service.Yellow=YellowService:create" + \
' --Yellow.Query.Endpoints="default -p 12346" --Yellow.Admin.Endpoints="default -p 12347"' + \
' --IceBox.PrintServicesReady=Yellow'
@@ -64,7 +63,7 @@ for output in clientPipe.xreadlines():
# Shutdown yellow.
#
print "shutting down yellow service...",
-command = IceBoxAdmin + updatedClientOptions + IceBoxReference + r' shutdown'
+command = IceBoxAdmin + updatedClientOptions + IceBoxEndpoints + r' shutdown'
IceBoxAdminPipe = os.popen(command)
IceBoxAdminStatus = IceBoxAdminPipe.close()
if IceBoxAdminStatus: