summaryrefslogtreecommitdiff
path: root/java/test/Ice/operations/Twoways.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-03-03 17:24:14 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-03-03 17:24:14 +0000
commita36b514b0495040b032f2c764c0d4694e60e1cce (patch)
treef2582dce91f54c753d5aa28095c73374a88d6eeb /java/test/Ice/operations/Twoways.java
parentFixed compile error (diff)
downloadice-a36b514b0495040b032f2c764c0d4694e60e1cce.tar.bz2
ice-a36b514b0495040b032f2c764c0d4694e60e1cce.tar.xz
ice-a36b514b0495040b032f2c764c0d4694e60e1cce.zip
Synced Ice and IceE operation tests.
Diffstat (limited to 'java/test/Ice/operations/Twoways.java')
-rw-r--r--java/test/Ice/operations/Twoways.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/java/test/Ice/operations/Twoways.java b/java/test/Ice/operations/Twoways.java
index cb83bfa4108..1acbccc4526 100644
--- a/java/test/Ice/operations/Twoways.java
+++ b/java/test/Ice/operations/Twoways.java
@@ -663,5 +663,15 @@ class Twoways
communicator.setDefaultContext(new java.util.HashMap());
}
}
+
+ {
+ double d = 1278312346.0 / 13.0;
+ double[] ds = new double[5];
+ for(int i = 0; i < 5; i++)
+ {
+ ds[i] = d;
+ }
+ p.opDoubleMarshaling(d, ds);
+ }
}
}