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/allTests.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/allTests.py')
-rwxr-xr-x | cpp/allTests.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index 7ec6eb2814e..f9c9e862699 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -16,6 +16,13 @@ import os, sys import getopt +# +# I must import "time" here, otherwise I get a "NameError: global name +# 'time' is not defined" in the IceStorm run.py scripts. I have no +# idea why. +# +import time + for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")): |