summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--javae/test/IceE/common/Client.java25
-rw-r--r--javae/test/IceE/common/Collocated.java25
-rw-r--r--javae/test/IceE/common/Server.java25
-rw-r--r--javae/test/IceE/common/build.xml35
4 files changed, 0 insertions, 110 deletions
diff --git a/javae/test/IceE/common/Client.java b/javae/test/IceE/common/Client.java
deleted file mode 100644
index cf231c18632..00000000000
--- a/javae/test/IceE/common/Client.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// **********************************************************************
-//
-// 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.
-//
-// **********************************************************************
-
-//
-// Dummy test client driver.
-//
-public class Client
-{
- public static int
- run(String[] args, Ice.Communicator comm, Ice.InitializationData data, java.io.PrintStream out)
- {
- return -1;
- }
-
- public static void
- main(String[] args)
- {
- }
-}
diff --git a/javae/test/IceE/common/Collocated.java b/javae/test/IceE/common/Collocated.java
deleted file mode 100644
index 231407f5436..00000000000
--- a/javae/test/IceE/common/Collocated.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// **********************************************************************
-//
-// 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.
-//
-// **********************************************************************
-
-//
-// Dummy collocated test driver.
-//
-public class Collocated
-{
- public static int
- run(String[] args, Ice.Communicator comm, Ice.InitializationData data, java.io.PrintStream out)
- {
- return -1;
- }
-
- public static void
- main(String[] args)
- {
- }
-}
diff --git a/javae/test/IceE/common/Server.java b/javae/test/IceE/common/Server.java
deleted file mode 100644
index 72b36849759..00000000000
--- a/javae/test/IceE/common/Server.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// **********************************************************************
-//
-// 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.
-//
-// **********************************************************************
-
-//
-// Dummy test server driver.
-//
-public class Server
-{
- public static int
- run(String[] args, Ice.Communicator comm, Ice.InitializationData data, java.io.PrintStream out)
- {
- return -1;
- }
-
- public static void
- main(String[] args)
- {
- }
-}
diff --git a/javae/test/IceE/common/build.xml b/javae/test/IceE/common/build.xml
deleted file mode 100644
index 4628bc65c24..00000000000
--- a/javae/test/IceE/common/build.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<!--
- **********************************************************************
-
- 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.
-
- **********************************************************************
--->
-
-<project name="test_IceE_common" default="all" basedir=".">
-
- <!-- set global properties for this build -->
- <property name="top.dir" value="../../.."/>
-
- <!-- Include common definitions -->
- <import file="${top.dir}/config/common.xml"/>
-
- <target name="init" depends="config-init"/>
-
- <target name="compile" depends="init" if="midp">
- <mkdir dir="${midp.class.dir}"/>
- <javac srcdir="." destdir="${midp.class.dir}" debug="${debug}" target="1.1" classpathref="midp.classpath"
- bootclasspathref="midp.bootclasspath"/>
- </target>
-
- <target name="all" depends="compile"/>
-
- <target name="clean">
- <delete dir="${generated.dir}"/>
- <delete dir="${midp.class.dir}"/>
- </target>
-
-</project>