diff options
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")): |