diff options
Diffstat (limited to 'java/allTests.py')
-rwxr-xr-x | java/allTests.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/allTests.py b/java/allTests.py index fef48b08121..8b89de12648 100755 --- a/java/allTests.py +++ b/java/allTests.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. @@ -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. @@ -48,13 +48,13 @@ tests = [ ("Ice/background", ["core"]), ("Ice/servantLocator", ["core"]), ("Ice/interceptor", ["core"]), + ("Ice/udp", ["core"]), ("IceBox/configuration", ["core", "noipv6"]), ("Freeze/dbmap", ["once"]), ("Freeze/complex", ["once"]), ("Freeze/evictor", ["core"]), ("Freeze/oldevictor", ["core"]), ("Glacier2/router", ["service"]), - ("Glacier2/attack", ["service"]), ("IceGrid/simple", ["service"]), ("IceSSL/configuration", ["once"]), ] |