dims 2002/10/02 17:28:04 Modified: java/test/wsdl/interop4/groupi Tag: interop4 build.xml Round4XSDTestTestCase.java Log: - Force GMT before calling echoDate - Force a overwrite for the Impl.java Revision Changes Path No revision No revision 1.1.2.3 +4 -2 xml-axis/java/test/wsdl/interop4/groupi/Attic/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop4/groupi/Attic/build.xml,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -r1.1.2.2 -r1.1.2.3 --- build.xml 2 Oct 2002 22:15:22 -0000 1.1.2.2 +++ build.xml 3 Oct 2002 00:28:03 -0000 1.1.2.3 @@ -62,9 +62,11 @@ <mkdir dir="${build.dest}"/> <copy file="Round4XSDTestTestCase.java" - todir="${root.dir}/build/work/test/wsdl/interop4/groupi/"/> + todir="${root.dir}/build/work/test/wsdl/interop4/groupi/" + overwrite="yes"/> <copy file="Round4XSDTestSoapImpl.java" - todir="${root.dir}/build/work/test/wsdl/interop4/groupi/"/> + todir="${root.dir}/build/work/test/wsdl/interop4/groupi/" + overwrite="yes"/> <!-- compile the skeletons --> <javac srcdir="${build.dir}/work" 1.1.2.4 +1 -0 xml-axis/java/test/wsdl/interop4/groupi/Attic/Round4XSDTestTestCase.java Index: Round4XSDTestTestCase.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/wsdl/interop4/groupi/Attic/Round4XSDTestTestCase.java,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -r1.1.2.3 -r1.1.2.4 --- Round4XSDTestTestCase.java 2 Oct 2002 21:54:03 -0000 1.1.2.3 +++ Round4XSDTestTestCase.java 3 Oct 2002 00:28:03 -0000 1.1.2.4 @@ -136,6 +136,7 @@ try { java.util.Calendar input = java.util.Calendar.getInstance(); + input.setTimeZone(TimeZone.getTimeZone("GMT")); java.util.Calendar value = null; value = binding.echoDate(input); assertTrue(input.equals(value));