diff options
Diffstat (limited to 'cpp/test/IceStorm/rep1/run.py')
-rwxr-xr-x | cpp/test/IceStorm/rep1/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceStorm/rep1/run.py b/cpp/test/IceStorm/rep1/run.py index 5ef589d9d00..dd374f172d4 100755 --- a/cpp/test/IceStorm/rep1/run.py +++ b/cpp/test/IceStorm/rep1/run.py @@ -42,7 +42,7 @@ def runtest(opt, ref, subopt="", pubopt=""): subscriberProc.waitTestSuccess(timeout=30) def runsub2(replica = -1, expect = None): - proc = TestUtil.startServer(subscriber2, icestorm.reference(replica) + ' --id foo', count=0) + proc = TestUtil.startServer(subscriber2, icestorm.reference(replica) + ' --id foo', count=0, echo = False) if expect: proc.expect(expect) proc.wait() @@ -55,7 +55,7 @@ def rununsub2(replica = -1, expect = None): proc.waitTestSuccess() # Else we first subscribe to this replica, then unsub. We # shouldn't get an AlreadySubscribedException. - proc = TestUtil.startServer(subscriber2, icestorm.reference(replica) + ' --id foo', count=0) + proc = TestUtil.startServer(subscriber2, icestorm.reference(replica) + ' --id foo', count=0, echo = False) if expect: proc.expect(expect) proc.wait() |