diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-19 14:38:20 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-19 14:38:20 +0000 |
commit | c07e282e58b1ba42ca121a01ba39c05784f4a3ec (patch) | |
tree | e8aadb0f2cc7a0f883d1e80bc78388f7491f5fe4 /cpp/test/IceStorm/federation/run.py | |
parent | file dummy5.ice was initially added on branch icepack_refactoring. (diff) | |
download | ice-c07e282e58b1ba42ca121a01ba39c05784f4a3ec.tar.bz2 ice-c07e282e58b1ba42ca121a01ba39c05784f4a3ec.tar.xz ice-c07e282e58b1ba42ca121a01ba39c05784f4a3ec.zip |
fix
Diffstat (limited to 'cpp/test/IceStorm/federation/run.py')
-rwxr-xr-x | cpp/test/IceStorm/federation/run.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/IceStorm/federation/run.py b/cpp/test/IceStorm/federation/run.py index 37efd293f8d..120710da820 100755 --- a/cpp/test/IceStorm/federation/run.py +++ b/cpp/test/IceStorm/federation/run.py @@ -14,7 +14,7 @@ # ********************************************************************** import os, sys -from time import sleep +import time for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) @@ -79,7 +79,7 @@ def doTest(batch): print "failed!" TestUtil.killServers() sys.exit(1) - sleep(1) + time.sleep(1) lockCount = lockCount + 1 print "ok" @@ -104,7 +104,7 @@ def doTest(batch): print "failed!" TestUtil.killServers() sys.exit(1) - sleep(1) + time.sleep(1) lockCount = lockCount + 1 print "ok" |