summaryrefslogtreecommitdiff
path: root/javae/test/IceE/exceptions/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'javae/test/IceE/exceptions/run.py')
-rwxr-xr-xjavae/test/IceE/exceptions/run.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/javae/test/IceE/exceptions/run.py b/javae/test/IceE/exceptions/run.py
deleted file mode 100755
index 8ad59c05439..00000000000
--- a/javae/test/IceE/exceptions/run.py
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/env python
-# **********************************************************************
-#
-# Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-#
-# This copy of Ice-E is licensed to you under the terms described in the
-# ICEE_LICENSE file included in this distribution.
-#
-# **********************************************************************
-
-import os, sys
-
-for toplevel in [".", "..", "../..", "../../..", "../../../.."]:
- toplevel = os.path.normpath(toplevel)
- if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")):
- break
-else:
- raise "can't find toplevel directory!"
-
-sys.path.append(os.path.join(toplevel, "config"))
-import TestUtil
-TestUtil.processCmdLine()
-
-name = os.path.join("IceE", "exceptions")
-testdir = os.path.join(toplevel, "test", name)
-
-print "tests with regular server."
-classpath = os.getenv("CLASSPATH", "")
-os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + TestUtil.sep + classpath
-TestUtil.clientServerTestWithOptions("", " --Ice.Warn.Connections=0")
-
-print "tests with collocated server."
-TestUtil.collocatedTestWithOptions(" --Ice.Warn.Dispatch=0")
-sys.exit(0)