diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-09-12 16:50:34 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-09-12 16:50:34 +0000 |
commit | f45f83ae0ca8e68791d3c06d17177f8e0495f2ec (patch) | |
tree | c73067e2d0f940e9794f57a5aa09199db54e5de7 /java/test/IceXML/encoding/run.py | |
parent | Project fixes after XML changes (diff) | |
download | ice-f45f83ae0ca8e68791d3c06d17177f8e0495f2ec.tar.bz2 ice-f45f83ae0ca8e68791d3c06d17177f8e0495f2ec.tar.xz ice-f45f83ae0ca8e68791d3c06d17177f8e0495f2ec.zip |
removing XML encoding support in Freeze
Diffstat (limited to 'java/test/IceXML/encoding/run.py')
-rwxr-xr-x | java/test/IceXML/encoding/run.py | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/java/test/IceXML/encoding/run.py b/java/test/IceXML/encoding/run.py deleted file mode 100755 index 05388d28cf2..00000000000 --- a/java/test/IceXML/encoding/run.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env python -# ********************************************************************** -# -# Copyright (c) 2003 -# ZeroC, Inc. -# Billerica, MA, USA -# -# All Rights Reserved. -# -# Ice is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License version 2 as published by -# the Free Software Foundation. -# -# ********************************************************************** - -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("IceXML", "encoding") -testdir = os.path.join(toplevel, "test", name) -os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + TestUtil.sep + os.getenv("CLASSPATH", "") - -client = "java -ea Client" - -print "starting client...", -clientPipe = os.popen(client + TestUtil.clientOptions + " " + testdir) -print "ok" - -for output in clientPipe.xreadlines(): - print output, - -clientStatus = clientPipe.close() - -if clientStatus: - sys.exit(1) - -sys.exit(0) |