summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/echo/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/echo/test.py')
-rw-r--r--cpp/test/Ice/echo/test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/test/Ice/echo/test.py b/cpp/test/Ice/echo/test.py
index 3f25f4bfa15..717826f73a2 100644
--- a/cpp/test/Ice/echo/test.py
+++ b/cpp/test/Ice/echo/test.py
@@ -9,7 +9,10 @@
class EchoServerTestCase(ClientServerTestCase):
+ def __init__(self):
+ ClientServerTestCase.__init__(self, "server", server=Server(quiet=True, waitForShutdown=False))
+
def runClientSide(self, current):
pass
-TestSuite(__name__, [EchoServerTestCase(name="server", server=Server(quiet=True, waitForShutdown=False))])
+TestSuite(__name__, [EchoServerTestCase()])