summaryrefslogtreecommitdiff
path: root/java/test/Ice/slicing/objects/Client.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-05-20 07:53:29 +0000
committerMichi Henning <michi@zeroc.com>2003-05-20 07:53:29 +0000
commitdcc2b4d839ee93c145fc321cc95b9f54e3b6c685 (patch)
tree3cec0953487f7ab3e3d8fed1f0e8d068bf189f50 /java/test/Ice/slicing/objects/Client.java
parentRemoved two slicing tests that can't be implemented in Java. (diff)
downloadice-dcc2b4d839ee93c145fc321cc95b9f54e3b6c685.tar.bz2
ice-dcc2b4d839ee93c145fc321cc95b9f54e3b6c685.tar.xz
ice-dcc2b4d839ee93c145fc321cc95b9f54e3b6c685.zip
Changed marshaling for sizes: sizes of up to 254 are now marshaled in a
single byte. Added appropriate tests for this to Ice/test/operations. Finished slicing for icej. All tests pass. Removed remaining trace.
Diffstat (limited to 'java/test/Ice/slicing/objects/Client.java')
-rw-r--r--java/test/Ice/slicing/objects/Client.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/java/test/Ice/slicing/objects/Client.java b/java/test/Ice/slicing/objects/Client.java
deleted file mode 100644
index 4c1e80e9947..00000000000
--- a/java/test/Ice/slicing/objects/Client.java
+++ /dev/null
@@ -1,57 +0,0 @@
-// **********************************************************************
-//
-// 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.
-//
-// **********************************************************************
-
-public class Client
-{
- private static int
- run(String[] args, Ice.Communicator communicator)
- {
- TestPrx test = AllTests.allTests(communicator, false);
- test.shutdown();
- return 0;
- }
-
- public static void
- main(String[] args)
- {
- int status = 0;
- Ice.Communicator communicator = null;
-
- try
- {
- communicator = Ice.Util.initialize(args);
- status = run(args, communicator);
- }
- catch(Ice.LocalException ex)
- {
- ex.printStackTrace();
- status = 1;
- }
-
- if(communicator != null)
- {
- try
- {
- communicator.destroy();
- }
- catch(Ice.LocalException ex)
- {
- ex.printStackTrace();
- status = 1;
- }
- }
-
- System.exit(status);
- }
-}