diff options
Diffstat (limited to 'cs/allTests.py')
-rwxr-xr-x | cs/allTests.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cs/allTests.py b/cs/allTests.py index cbe4e1b744f..9bdaa8db496 100755 --- a/cs/allTests.py +++ b/cs/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. @@ -50,7 +50,6 @@ tests = [ ("Ice/background", ["core"]), ("IceBox/configuration", ["core", "noipv6"]), ("Glacier2/router", ["service"]), - ("Glacier2/attack", ["service"]), ("IceGrid/simple", ["service"]), ("IceSSL/configuration", ["once", "novista", "nomono"]), ] |