/hg/icedtea6: New patch which adds more test cases to a regressi...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Wed Mar 9 01:47:24 PST 2011
changeset 4cbe17b91cc8 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=4cbe17b91cc8
author: ptisnovs
date: Wed Mar 09 10:50:40 2011 +0100
New patch which adds more test cases to a regression test
java/lang/Double/ToString
diffstat:
ChangeLog | 7 +++++
Makefile.am | 3 +-
patches/jtreg-double-to-string.patch | 47 ++++++++++++++++++++++++++++++++++++
3 files changed, 56 insertions(+), 1 deletions(-)
diffs (79 lines):
diff -r 83f325a1a5ed -r 4cbe17b91cc8 ChangeLog
--- a/ChangeLog Tue Mar 08 14:22:29 2011 +0100
+++ b/ChangeLog Wed Mar 09 10:50:40 2011 +0100
@@ -1,3 +1,10 @@
+2011-03-09 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile.am: Add new patch.
+ * patches/jtreg-double-to-string.patch:
+ Patch which adds more test cases to test
+ java/lang/Double/ToString
+
2011-03-08 Pavel Tisnovsky <ptisnovs at redhat.com>
* patches/jtreg-hotspot-bug-6196102.patch:
diff -r 83f325a1a5ed -r 4cbe17b91cc8 Makefile.am
--- a/Makefile.am Tue Mar 08 14:22:29 2011 +0100
+++ b/Makefile.am Wed Mar 09 10:50:40 2011 +0100
@@ -325,7 +325,8 @@
patches/openjdk/7016856-pisces-performance.patch \
patches/openjdk/6934977-MappedByteBuffer.load.patch \
patches/jaxp-serial-version-uid.patch \
- patches/jtreg-hotspot-bug-6196102.patch
+ patches/jtreg-hotspot-bug-6196102.patch \
+ patches/jtreg-double-to-string.patch
if WITH_ALT_HSBUILD
ICEDTEA_PATCHES += \
diff -r 83f325a1a5ed -r 4cbe17b91cc8 patches/jtreg-double-to-string.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/jtreg-double-to-string.patch Wed Mar 09 10:50:40 2011 +0100
@@ -0,0 +1,48 @@
+--- openjdk-old/jdk/test/java/lang/Double/ToString.java 2011-02-28 10:51:09.454128000 +0100
++++ openjdk/jdk/test/java/lang/Double/ToString.java 2011-02-28 10:51:09.454128000 +0100
+@@ -23,17 +23,39 @@
+
+ /*
+ * @test
+- * @bug 4428022
++ * @bug 4428022 4511638
+ * @summary Tests for Double.toString
+- * @author Andrew Haley <aph at redhat.com>
++ * @author Andrew Haley <aph at redhat.com>, Pavel Tisnovsky <ptisnovs at redhat.com>
+ */
+
+ public class ToString {
++ private static boolean conversionFailure = false;
++
++ public static void check(double d, String str) {
++ String converted = Double.toString(d);
++ if (!converted.equals(str)) {
++ conversionFailure = true;
++ System.out.println("Double.toString(" + str + ") is not \"" + str + "\" but \"" + converted + "\"");
++ }
++ else {
++ System.out.println("Double value " + str + " converted correctly");
++ }
++ }
+
+ public static void main(String args[]) {
+- if (!Double.toString(0.001).equals("0.001"))
+- throw new RuntimeException("Double.toString(0.001) is not \"0.001\"");
+- if (!Double.toString(0.002).equals("0.002"))
+- throw new RuntimeException("Double.toString(0.001) is not \"0.002\"");
++ check(0.001, "0.001");
++ check(0.002, "0.002");
++ check(7.79625120912E289, "7.79625120912E289");
++ check(1.0E23, "1.0E23");
++ check(9.999999999999999E22, "1.0E23");
++ check(8.41E21, "8.41E21");
++ check(2.0E23, "2.0E23");
++ check(8.962E21, "8.962E21");
++ check(7.3879E20, "7.3879E20");
++ check(3.1E22, "3.1E22");
++ check(5.63E21, "5.63E21");
++ if (conversionFailure) {
++ throw new RuntimeException("At least one conversion failure occured");
++ }
+ }
+ }
More information about the distro-pkg-dev
mailing list