diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-09 20:06:44 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-09 20:06:44 +0000 |
commit | 1955dd183bc3347b0241977494a10a4842199c7f (patch) | |
tree | 4fd7e8dedda8f9f637e9a8b36422be5cdc320079 /cpp | |
parent | lots of fixes (diff) | |
download | ice-1955dd183bc3347b0241977494a10a4842199c7f.tar.bz2 ice-1955dd183bc3347b0241977494a10a4842199c7f.tar.xz ice-1955dd183bc3347b0241977494a10a4842199c7f.zip |
fixes
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/test/IceStorm/single/run.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/cpp/test/IceStorm/single/run.py b/cpp/test/IceStorm/single/run.py index ab77e1b5197..6835b4729be 100755 --- a/cpp/test/IceStorm/single/run.py +++ b/cpp/test/IceStorm/single/run.py @@ -37,7 +37,6 @@ print "starting icestorm...", dbEnvName = os.path.join(testdir, "db") TestUtil.cleanDbDir(dbEnvName) command = iceStorm + updatedClientServerOptions + iceStormEndpoint + " --IceStorm.DBEnvName=" + dbEnvName -print command iceStormPipe = os.popen(command) TestUtil.getServerPid(iceStormPipe) TestUtil.getAdapterReady(iceStormPipe) @@ -57,10 +56,7 @@ subscriber = os.path.join(testdir, "subscriber") # is used later to ensure that the subscriber actually goes away. # subscriberLockFile = os.path.join(testdir, 'subscriber.lock') -try: - os.remove(subscriberLockFile) -except OSError: - 1 # Ignore +os.remove(subscriberLockFile) print "starting subscriber...", command = subscriber + updatedClientServerOptions + iceStormEndpoint + r' ' + subscriberLockFile @@ -99,7 +95,7 @@ while os.path.isfile(subscriberLockFile): print "lock file still present: ", lockCount if lockCount > 10: print "subscriber didn't terminate, failed!" - TestUtil.killServers() +# TestUtil.killServers() sys.exit(1) time.sleep(1) lockCount = lockCount + 1 |