diff options
author | Marc Laukien <marc@zeroc.com> | 2002-05-28 21:48:07 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-05-28 21:48:07 +0000 |
commit | 9513c352c31410aaf7d8886161369e6d65a53c02 (patch) | |
tree | dd71afc00a36ef77ed67686b7fb5b7e2939fec8a /java/test/Ice/exceptions/run.py | |
parent | Bug fix. (diff) | |
download | ice-9513c352c31410aaf7d8886161369e6d65a53c02.tar.bz2 ice-9513c352c31410aaf7d8886161369e6d65a53c02.tar.xz ice-9513c352c31410aaf7d8886161369e6d65a53c02.zip |
fixes
Diffstat (limited to 'java/test/Ice/exceptions/run.py')
-rwxr-xr-x | java/test/Ice/exceptions/run.py | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/java/test/Ice/exceptions/run.py b/java/test/Ice/exceptions/run.py index cf4e4c70ca7..5549698f762 100755 --- a/java/test/Ice/exceptions/run.py +++ b/java/test/Ice/exceptions/run.py @@ -1,28 +1,28 @@ -#!/usr/bin/env python -# ********************************************************************** -# -# Copyright (c) 2001 -# MutableRealms, Inc. -# Huntsville, AL, USA -# -# All Rights Reserved -# -# ********************************************************************** - -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 - -name = os.path.join("Ice", "exceptions") - -TestUtil.clientServerTest(toplevel, name) -TestUtil.collocatedTest(toplevel, name) -sys.exit(0) +#!/usr/bin/env python
+# **********************************************************************
+#
+# Copyright (c) 2001
+# MutableRealms, Inc.
+# Huntsville, AL, USA
+#
+# All Rights Reserved
+#
+# **********************************************************************
+
+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
+
+name = os.path.join("Ice", "exceptions")
+
+TestUtil.clientServerTest(toplevel, name)
+TestUtil.collocatedTest(toplevel, name)
+sys.exit(0)
|