diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-01-09 12:57:39 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-01-09 12:57:39 -0800 |
commit | cc71bb128d601e0e90e5a4901f3fe8a126f3b9ff (patch) | |
tree | e29e673bc4b29f078d81a9472212ae1b1835f2e9 /cpp/demo/Ice/hello/expect.py | |
parent | Fix 3638 - IcePHP not compile because SignalHandler is missing. (diff) | |
download | ice-cc71bb128d601e0e90e5a4901f3fe8a126f3b9ff.tar.bz2 ice-cc71bb128d601e0e90e5a4901f3fe8a126f3b9ff.tar.xz ice-cc71bb128d601e0e90e5a4901f3fe8a126f3b9ff.zip |
bug 2425 - fix expect scripts for hello demo
Diffstat (limited to 'cpp/demo/Ice/hello/expect.py')
-rwxr-xr-x | cpp/demo/Ice/hello/expect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Ice/hello/expect.py b/cpp/demo/Ice/hello/expect.py index bc06e894d62..73ef8f0d3e1 100755 --- a/cpp/demo/Ice/hello/expect.py +++ b/cpp/demo/Ice/hello/expect.py @@ -22,9 +22,9 @@ sys.path.append(path[0]) from demoscript import * from demoscript.Ice import hello -server = Util.spawn('./server --Ice.PrintAdapterReady') +server = Util.spawn('./server --Ice.PrintAdapterReady --Ice.Warn.Connections=0') server.expect('.* ready') -client = Util.spawn('./client') +client = Util.spawn('./client --Ice.Warn.Connections=0') client.expect('.*==>') hello.run(client, server) |