diff options
Diffstat (limited to 'javae/test/IceE/retry/run.py')
-rwxr-xr-x | javae/test/IceE/retry/run.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/javae/test/IceE/retry/run.py b/javae/test/IceE/retry/run.py deleted file mode 100755 index f363df97b70..00000000000 --- a/javae/test/IceE/retry/run.py +++ /dev/null @@ -1,30 +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", "retry") -testdir = os.path.join(toplevel, "test", name) - -classpath = os.getenv("CLASSPATH", "") -os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + TestUtil.sep + classpath -TestUtil.clientServerTest() -sys.exit(0) |