/hg/icedtea6: Added patch which fixes regression test openjdk/jd...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Tue Jun 14 08:25:35 PDT 2011
changeset 78a0ce4fd551 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=78a0ce4fd551
author: ptisnovs
date: Tue Jun 14 17:25:06 2011 +0200
Added patch which fixes regression test
openjdk/jdk/test/sun/net/www/protocol/file/EncodedMultiByteChar.java
diffstat:
ChangeLog | 8 ++++++++
Makefile.am | 3 ++-
patches/jtreg-EncodedMultiByteChar.patch | 23 +++++++++++++++++++++++
3 files changed, 33 insertions(+), 1 deletions(-)
diffs (56 lines):
diff -r 0e134aa56ccc -r 78a0ce4fd551 ChangeLog
--- a/ChangeLog Tue Jun 14 09:02:14 2011 -0400
+++ b/ChangeLog Tue Jun 14 17:25:06 2011 +0200
@@ -1,3 +1,11 @@
+2011-06-14 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile.am: added new patch
+ * patches/jtreg-EncodedMultiByteChar.patch:
+ Make sure that the regression test
+ openjdk/jdk/test/sun/net/www/protocol/file/EncodedMultiByteChar.java
+ deletes all its work files.
+
2011-06-14 Denis Lila <dlila at redhat.com>
* Makefile.am: Add patch.
diff -r 0e134aa56ccc -r 78a0ce4fd551 Makefile.am
--- a/Makefile.am Tue Jun 14 09:02:14 2011 -0400
+++ b/Makefile.am Tue Jun 14 17:25:06 2011 +0200
@@ -354,7 +354,8 @@
patches/fonts-rhel-version.patch \
patches/openjdk/7036148-npe-null-jmenu-name.patch \
patches/jtreg-ChangeDir.patch \
- patches/jtreg-TempBuffer.patch
+ patches/jtreg-TempBuffer.patch \
+ patches/jtreg-EncodedMultiByteChar.patch
if WITH_ALT_HSBUILD
ICEDTEA_PATCHES += \
diff -r 0e134aa56ccc -r 78a0ce4fd551 patches/jtreg-EncodedMultiByteChar.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/jtreg-EncodedMultiByteChar.patch Tue Jun 14 17:25:06 2011 +0200
@@ -0,0 +1,24 @@
+--- openjdk.orig/jdk/test/sun/net/www/protocol/file/EncodedMultiByteChar.java 2011-02-28 17:07:06.000000000 +0100
++++ openjdk/jdk/test/sun/net/www/protocol/file/EncodedMultiByteChar.java 2011-06-14 13:21:36.000000000 +0200
+@@ -61,6 +61,9 @@
+ } catch (IOException e) {
+ System.out.println("Failed to create test file ");
+ e.printStackTrace();
++ if (file != null) {
++ file.delete();
++ }
+ return;
+ }
+
+@@ -81,5 +84,11 @@
+ } catch (IOException ioe) {
+ ioe.printStackTrace();
+ }
++ finally {
++ if (file != null) {
++ file.delete();
++ }
++ }
++ System.out.println("test OK");
+ }
+ }
More information about the distro-pkg-dev
mailing list