diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-03-03 15:53:13 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-03-03 15:53:13 +0800 |
commit | d00fed41c6a7b4a363541858a19919ed0234608e (patch) | |
tree | 4933dfa8cf9f9abe19ee121c0ba7425939e5e76a /demoscript/IceStorm/clock.py | |
parent | Merge branch 'master' of ssh://git/home/git/ice (diff) | |
download | ice-d00fed41c6a7b4a363541858a19919ed0234608e.tar.bz2 ice-d00fed41c6a7b4a363541858a19919ed0234608e.tar.xz ice-d00fed41c6a7b4a363541858a19919ed0234608e.zip |
Fix expect scripts for HA IceStorm. Clean up READMEs.
Diffstat (limited to 'demoscript/IceStorm/clock.py')
-rwxr-xr-x | demoscript/IceStorm/clock.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demoscript/IceStorm/clock.py b/demoscript/IceStorm/clock.py index 070cc5761ac..1a102aa880b 100755 --- a/demoscript/IceStorm/clock.py +++ b/demoscript/IceStorm/clock.py @@ -17,7 +17,7 @@ def runtest(icestorm, subCmd, subargs, pubCmd, pubargs): sub = demoscript.Util.spawn('%s --Ice.PrintAdapterReady %s' %(subCmd, subargs)) sub.expect('.* ready') - icestorm.expect('Subscribe:') + icestorm.expect('subscribeAndGetPublisher:') pub = demoscript.Util.spawn('%s %s' %(pubCmd, pubargs)) @@ -31,7 +31,7 @@ def runtest(icestorm, subCmd, subargs, pubCmd, pubargs): sub.kill(signal.SIGINT) sub.waitTestSuccess() try: - icestorm.expect('Unsubscribe:') + icestorm.expect('unsubscribe:') except pexpect.TIMEOUT: print "(Wait for Unsubscribe failed, expected for Mono)", print "ok" |