diff options
Diffstat (limited to 'py/allTests.py')
-rwxr-xr-x | py/allTests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/allTests.py b/py/allTests.py index b603ffae41d..945d04d6aea 100755 --- a/py/allTests.py +++ b/py/allTests.py @@ -12,13 +12,13 @@ import os, sys, re, getopt for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.abspath(toplevel) - if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")): + if os.path.exists(os.path.join(toplevel, "scripts", "TestUtil.py")): break else: raise "can't find toplevel directory!" -sys.path.append(os.path.join(toplevel, "config")) -import TestUtil +sys.path.append(os.path.join(toplevel)) +from scripts import * # # List of all basic tests. |