/hg/icedtea6: Patch for regression test openjdk/jdk/test/java/ni...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Jun 17 02:10:57 PDT 2011


changeset 1d4ca38b3440 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=1d4ca38b3440
author: ptisnovs
date: Fri Jun 17 11:10:49 2011 +0200

	Patch for regression test
	openjdk/jdk/test/java/nio/channels/Channels/Write.java


diffstat:

 ChangeLog                         |   8 ++++++
 Makefile.am                       |   3 +-
 patches/jtreg-ChannelsWrite.patch |  50 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 60 insertions(+), 1 deletions(-)

diffs (83 lines):

diff -r 9dbcfded2579 -r 1d4ca38b3440 ChangeLog
--- a/ChangeLog	Thu Jun 16 12:57:43 2011 -0400
+++ b/ChangeLog	Fri Jun 17 11:10:49 2011 +0200
@@ -1,3 +1,11 @@
+2011-06-17  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* Makefile.am: added new patch
+	* patches/jtreg-ChannelsWrite.patch:
+	Make sure that the regression test
+	openjdk/jdk/test/java/nio/channels/Channels/Write.java
+	deletes all its work files.
+
 2011-06-16  Denis Lila  <dlila at redhat.com>
 
 	* pulseaudio/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java
diff -r 9dbcfded2579 -r 1d4ca38b3440 Makefile.am
--- a/Makefile.am	Thu Jun 16 12:57:43 2011 -0400
+++ b/Makefile.am	Fri Jun 17 11:10:49 2011 +0200
@@ -357,7 +357,8 @@
 	patches/jtreg-TempBuffer.patch \
 	patches/jtreg-EncodedMultiByteChar.patch \
 	patches/jtreg-FileLoaderTest.patch \
-	patches/jtreg-FileMap.patch
+	patches/jtreg-FileMap.patch \
+	patches/jtreg-ChannelsWrite.patch
 
 if WITH_ALT_HSBUILD
 ICEDTEA_PATCHES += \
diff -r 9dbcfded2579 -r 1d4ca38b3440 patches/jtreg-ChannelsWrite.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/jtreg-ChannelsWrite.patch	Fri Jun 17 11:10:49 2011 +0200
@@ -0,0 +1,51 @@
+--- openjdk.orig/jdk/test/java/nio/channels/Channels/Write.java	2011-02-28 17:06:59.000000000 +0100
++++ openjdk/jdk/test/java/nio/channels/Channels/Write.java	2011-06-16 14:14:44.000000000 +0200
+@@ -34,18 +34,37 @@
+ 
+     public static void main(String[] args) throws Exception {
+         byte[] bb = new byte[3];
+-        File testFile = File.createTempFile("test1", null);
+-        testFile.deleteOnExit();
++        File testFile = null;
++        try {
++            testFile = File.createTempFile("test1", null);
+ 
+-        FileOutputStream fos = new FileOutputStream(testFile);
+-        FileChannel fc = fos.getChannel();
+-        OutputStream out = Channels.newOutputStream(fc);
++            FileOutputStream fos = null;
++            FileChannel fc = null;
++            OutputStream out = null;
++            try {
++                fos = new FileOutputStream(testFile);
++                fc = fos.getChannel();
++                out = Channels.newOutputStream(fc);
+ 
+-        out.write(bb,0,1);
+-        out.write(bb,2,1);
+-
+-        out.close();
+-        fc.close();
+-        fos.close();
++                out.write(bb,0,1);
++                out.write(bb,2,1);
++            }
++            finally {
++                if (out != null) {
++                    out.close();
++                }
++                if (fc != null) {
++                    fc.close();
++                }
++                if (fos != null) {
++                    fos.close();
++                }
++            }
++        }
++        finally {
++            if (testFile != null) {
++                testFile.delete();
++            }
++        }
+     }
+ }



More information about the distro-pkg-dev mailing list