From martijnverburg at gmail.com Tue Jul 5 00:31:58 2016 From: martijnverburg at gmail.com (Martijn Verburg) Date: Mon, 4 Jul 2016 17:31:58 -0700 Subject: Java 9 Gamified hackathon source code In-Reply-To: References: Message-ID: Hi Richard, The API for HTTP2 is 'interesting' :-). Making the PUT request as per the instructions looks like this: HttpRequest.create(new URI("http://jozijugdojo.co.za/go/mverburg/jshellput ")).PUT().response().body(HttpResponse.asString()); Note that you have to pass in a HttpResponse.BodyProcessor (in this case the statically provided asString() method which is a HttpResponse.BodyProcessor). A trap for those used to the traditional (Apache) HttpClient calls. Onto the next task... Cheers, Martijn On 22 June 2016 at 01:41, Mani Sarkar wrote: > Hi Richard, > > We could move the repo to the adopt openjdk repo, if you feel that's where > it belongs. > > I can help you there, if you like. > > Cheers, > > Mani > > On Wed, 22 Jun 2016 07:00 Richard Kolb, wrote: > >> Hi Mani, >> >> This is a github link! >> We have had demos of jigsaw, but never anything to actually do a hackaton >> with with. >> >> You are more than welcome to link or refork the repository. I see I >> forked to the Adopt A JSR by mistake. >> >> Regards, >> Richard. >> On 22 Jun 2016 12:11 AM, "Mani Sarkar" wrote: >> >>> Really great work, our folks at LJC could use it at the Hackathons. >>> >>> We also have this repo: https://github.com/AdoptOpenJDK/jdk9-jigsaw, >>> any chance of link these together or also pouring some of the goodies from >>> your repo into this - just an idea, still raw. >>> >>> Cheers, >>> Mani >>> >>> On Tue, 21 Jun 2016 at 07:32 Richard Kolb wrote: >>> >>>> Hi Martijn, >>>> >>>> That is a fantastic idea! >>>> Perhaps you could set up a wiki like the Adopt A JSR wiki that shows >>>> which >>>> JUGs are involved in which JEP and where testing is needed ? >>>> >>>> As a side note, I posted a question on how to set the JVM arguments on >>>> the >>>> child jshell JVM a few months ago on this mailing list (and on a >>>> weekend). >>>> Michel Trudeau from Oracle responded and said he would add a feature >>>> request. A couple of builds later "-R" was added to jshell. >>>> >>>> A special and public thanks to Michel! >>>> >>>> regards, >>>> Richard. >>>> >>>> On 20 June 2016 at 21:00, Martijn Verburg >>>> wrote: >>>> >>>> > Hi Richard, >>>> > >>>> > I've informally asked a few of the leads to highlight any areas of >>>> Java 9 >>>> > that might need some early focus, should give us some nice future >>>> direction. >>>> > >>>> > I think this is really great work, it would be great if everyone on >>>> this >>>> > list can start telling their communities and get the forks and PRs >>>> coming >>>> > in! >>>> > >>>> > Cheers, >>>> > Martijn >>>> > >>>> > On 20 June 2016 at 18:58, Richard Kolb wrote: >>>> > >>>> >> Hi Rahman, >>>> >> >>>> >> jshell took centre stage with the new http2 client, letsencrypt, and >>>> >> local variable type inference. >>>> >> IDEs were not allowed. >>>> >> >>>> >> The idea was that your could not really prepare for the hackathon >>>> and you >>>> >> needed to complete a step to discover the next step. I could put it >>>> in >>>> >> training material, but I think it would be a bit boring ;-) >>>> >> >>>> >> All in all there were five steps. This was the leader board >>>> >> after >>>> the >>>> >> hackaton. >>>> >> >>>> >> regards, >>>> >> Richard. >>>> >> >>>> >> On 20 June 2016 at 19:13, Rahman USTA >>>> wrote: >>>> >> >>>> >>> Richard, Very good to gamify learning Java 9. How many challenges >>>> does >>>> >>> it have ? >>>> >>> >>>> >>> Is it possible to see them in a document? (training/hackathon >>>> material) >>>> >>> >>>> >>> Thanks. >>>> >>> >>>> >>> 2016-06-20 19:56 GMT+03:00 Richard Kolb : >>>> >>> >>>> >>>> Thanks Martijn. >>>> >>>> If anyone wants to see it online, I have re-enabled it. >>>> >>>> https://jozijugdojo.co.za/ >>>> >>>> >>>> >>>> >>>> >>>> On 20 June 2016 at 15:49, Martijn Verburg < >>>> martijnverburg at gmail.com> >>>> >>>> wrote: >>>> >>>> >>>> >>>> > Very cool, thanks Richard! >>>> >>>> > >>>> >>>> > Cheers, >>>> >>>> > Martijn >>>> >>>> > >>>> >>>> > On 20 June 2016 at 14:21, Richard Kolb >>>> wrote: >>>> >>>> > >>>> >>>> >> Hello everyone, >>>> >>>> >> >>>> >>>> >> This is the source code for the Java 9 Gamified hackathon >>>> >>>> >> that was >>>> done on >>>> >>>> the >>>> >>>> >> 4'th of June 2016 at the Jozi-JUG. >>>> >>>> >> https://github.com/Adopt-a-JSR/gamified-java9-hackathon >>>> >>>> >> >>>> >>>> >> The app works on Java 9 and exposes HTTP 2 using Springboot and >>>> >>>> Undertow. >>>> >>>> >> >>>> >>>> >> It's all under the "Unlicense " so >>>> please >>>> >>>> feel >>>> >>>> >> free >>>> >>>> >> to do whatever you want with it. >>>> >>>> >> >>>> >>>> >> regards, >>>> >>>> >> Richard. >>>> >>>> >> >>>> >>>> > >>>> >>>> > >>>> >>>> >>>> >>> >>>> >>> >>>> >>> >>>> >>> -- >>>> >>> Rahman USTA >>>> >>> Istanbul JUG >>>> >>> https://github.com/rahmanusta >>>> >>> >>>> >> >>>> >> >>>> > >>>> >>> -- >>> @theNeomatrix369 * | **Blog >>> ** | *LJC Associate & LJC >>> Advocate (@adoptopenjdk & @adoptajsr programs) >>> *Meet-a-Project - *MutabilityDetector >>> * | **Bitbucket >>> * * | **Github >>> * * | **LinkedIn >>> * >>> *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ >>> >>> *Don't chase success, rather aim for "Excellence", and success will come >>> chasing after you!* >>> >> -- > @theNeomatrix369 * | **Blog > ** | *LJC Associate & LJC Advocate > (@adoptopenjdk & @adoptajsr programs) > *Meet-a-Project - *MutabilityDetector > * | **Bitbucket > * * | **Github > * * | **LinkedIn > * > *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ > > *Don't chase success, rather aim for "Excellence", and success will come > chasing after you!* > From martijnverburg at gmail.com Tue Jul 5 00:44:10 2016 From: martijnverburg at gmail.com (Martijn Verburg) Date: Mon, 4 Jul 2016 17:44:10 -0700 Subject: Java 9 Gamified hackathon source code In-Reply-To: References: Message-ID: In addition to this, do you have a solutions listing / folder you could send out? Maybe just as a PDF to instructors? Cheers, Martijn On 4 July 2016 at 17:31, Martijn Verburg wrote: > Hi Richard, > > The API for HTTP2 is 'interesting' :-). Making the PUT request as per the > instructions looks like this: > > HttpRequest.create(new URI("http://jozijugdojo.co.za/go/mverburg/jshellput > ")).PUT().response().body(HttpResponse.asString()); > > Note that you have to pass in a HttpResponse.BodyProcessor (in this > case the statically provided asString() method which is a > HttpResponse.BodyProcessor). A trap for those used to the > traditional (Apache) HttpClient calls. > > Onto the next task... > > > > > Cheers, > Martijn > > On 22 June 2016 at 01:41, Mani Sarkar wrote: > >> Hi Richard, >> >> We could move the repo to the adopt openjdk repo, if you feel that's >> where it belongs. >> >> I can help you there, if you like. >> >> Cheers, >> >> Mani >> >> On Wed, 22 Jun 2016 07:00 Richard Kolb, wrote: >> >>> Hi Mani, >>> >>> This is a github link! >>> We have had demos of jigsaw, but never anything to actually do a >>> hackaton with with. >>> >>> You are more than welcome to link or refork the repository. I see I >>> forked to the Adopt A JSR by mistake. >>> >>> Regards, >>> Richard. >>> On 22 Jun 2016 12:11 AM, "Mani Sarkar" wrote: >>> >>>> Really great work, our folks at LJC could use it at the Hackathons. >>>> >>>> We also have this repo: https://github.com/AdoptOpenJDK/jdk9-jigsaw, >>>> any chance of link these together or also pouring some of the goodies from >>>> your repo into this - just an idea, still raw. >>>> >>>> Cheers, >>>> Mani >>>> >>>> On Tue, 21 Jun 2016 at 07:32 Richard Kolb wrote: >>>> >>>>> Hi Martijn, >>>>> >>>>> That is a fantastic idea! >>>>> Perhaps you could set up a wiki like the Adopt A JSR wiki that shows >>>>> which >>>>> JUGs are involved in which JEP and where testing is needed ? >>>>> >>>>> As a side note, I posted a question on how to set the JVM arguments on >>>>> the >>>>> child jshell JVM a few months ago on this mailing list (and on a >>>>> weekend). >>>>> Michel Trudeau from Oracle responded and said he would add a feature >>>>> request. A couple of builds later "-R" was added to jshell. >>>>> >>>>> A special and public thanks to Michel! >>>>> >>>>> regards, >>>>> Richard. >>>>> >>>>> On 20 June 2016 at 21:00, Martijn Verburg >>>>> wrote: >>>>> >>>>> > Hi Richard, >>>>> > >>>>> > I've informally asked a few of the leads to highlight any areas of >>>>> Java 9 >>>>> > that might need some early focus, should give us some nice future >>>>> direction. >>>>> > >>>>> > I think this is really great work, it would be great if everyone on >>>>> this >>>>> > list can start telling their communities and get the forks and PRs >>>>> coming >>>>> > in! >>>>> > >>>>> > Cheers, >>>>> > Martijn >>>>> > >>>>> > On 20 June 2016 at 18:58, Richard Kolb wrote: >>>>> > >>>>> >> Hi Rahman, >>>>> >> >>>>> >> jshell took centre stage with the new http2 client, letsencrypt, and >>>>> >> local variable type inference. >>>>> >> IDEs were not allowed. >>>>> >> >>>>> >> The idea was that your could not really prepare for the hackathon >>>>> and you >>>>> >> needed to complete a step to discover the next step. I could put it >>>>> in >>>>> >> training material, but I think it would be a bit boring ;-) >>>>> >> >>>>> >> All in all there were five steps. This was the leader board >>>>> >> after >>>>> the >>>>> >> hackaton. >>>>> >> >>>>> >> regards, >>>>> >> Richard. >>>>> >> >>>>> >> On 20 June 2016 at 19:13, Rahman USTA >>>>> wrote: >>>>> >> >>>>> >>> Richard, Very good to gamify learning Java 9. How many challenges >>>>> does >>>>> >>> it have ? >>>>> >>> >>>>> >>> Is it possible to see them in a document? (training/hackathon >>>>> material) >>>>> >>> >>>>> >>> Thanks. >>>>> >>> >>>>> >>> 2016-06-20 19:56 GMT+03:00 Richard Kolb : >>>>> >>> >>>>> >>>> Thanks Martijn. >>>>> >>>> If anyone wants to see it online, I have re-enabled it. >>>>> >>>> https://jozijugdojo.co.za/ >>>>> >>>> >>>>> >>>> >>>>> >>>> On 20 June 2016 at 15:49, Martijn Verburg < >>>>> martijnverburg at gmail.com> >>>>> >>>> wrote: >>>>> >>>> >>>>> >>>> > Very cool, thanks Richard! >>>>> >>>> > >>>>> >>>> > Cheers, >>>>> >>>> > Martijn >>>>> >>>> > >>>>> >>>> > On 20 June 2016 at 14:21, Richard Kolb >>>>> wrote: >>>>> >>>> > >>>>> >>>> >> Hello everyone, >>>>> >>>> >> >>>>> >>>> >> This is the source code for the Java 9 Gamified hackathon >>>>> >>>> >> that was >>>>> done on >>>>> >>>> the >>>>> >>>> >> 4'th of June 2016 at the Jozi-JUG. >>>>> >>>> >> https://github.com/Adopt-a-JSR/gamified-java9-hackathon >>>>> >>>> >> >>>>> >>>> >> The app works on Java 9 and exposes HTTP 2 using Springboot and >>>>> >>>> Undertow. >>>>> >>>> >> >>>>> >>>> >> It's all under the "Unlicense " so >>>>> please >>>>> >>>> feel >>>>> >>>> >> free >>>>> >>>> >> to do whatever you want with it. >>>>> >>>> >> >>>>> >>>> >> regards, >>>>> >>>> >> Richard. >>>>> >>>> >> >>>>> >>>> > >>>>> >>>> > >>>>> >>>> >>>>> >>> >>>>> >>> >>>>> >>> >>>>> >>> -- >>>>> >>> Rahman USTA >>>>> >>> Istanbul JUG >>>>> >>> https://github.com/rahmanusta >>>>> >>> >>>>> >> >>>>> >> >>>>> > >>>>> >>>> -- >>>> @theNeomatrix369 * | **Blog >>>> ** | *LJC Associate & LJC >>>> Advocate (@adoptopenjdk & @adoptajsr programs) >>>> *Meet-a-Project - *MutabilityDetector >>>> * | **Bitbucket >>>> * * | **Github >>>> * * | **LinkedIn >>>> * >>>> *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ >>>> >>>> *Don't chase success, rather aim for "Excellence", and success will >>>> come chasing after you!* >>>> >>> -- >> @theNeomatrix369 * | **Blog >> ** | *LJC Associate & LJC Advocate >> (@adoptopenjdk & @adoptajsr programs) >> *Meet-a-Project - *MutabilityDetector >> * | **Bitbucket >> * * | **Github >> * * | **LinkedIn >> * >> *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ >> >> *Don't chase success, rather aim for "Excellence", and success will come >> chasing after you!* >> > > From rjdkolb at gmail.com Tue Jul 5 05:54:12 2016 From: rjdkolb at gmail.com (Richard Kolb) Date: Tue, 5 Jul 2016 07:54:12 +0200 Subject: Java 9 Gamified hackathon source code In-Reply-To: References: Message-ID: Hi Martijn, Is is indeed interesting. A lot of people tried to .toString() the response. The Java docs don't show where the static asString() come from which is probably a good update to the java docs. You now have three Hackpoints ;-) (You must be logged in, or you will get a horrid auth error) The page also needs 5 seconds to load. regards, Richard. On 5 July 2016 at 02:31, Martijn Verburg wrote: > Hi Richard, > > The API for HTTP2 is 'interesting' :-). Making the PUT request as per the > instructions looks like this: > > HttpRequest.create(new URI("http://jozijugdojo.co.za/go/mverburg/jshellput > ")).PUT().response().body(HttpResponse.asString()); > > Note that you have to pass in a HttpResponse.BodyProcessor (in this > case the statically provided asString() method which is a > HttpResponse.BodyProcessor). A trap for those used to the > traditional (Apache) HttpClient calls. > > Onto the next task... > > > > > Cheers, > Martijn > > On 22 June 2016 at 01:41, Mani Sarkar wrote: > >> Hi Richard, >> >> We could move the repo to the adopt openjdk repo, if you feel that's >> where it belongs. >> >> I can help you there, if you like. >> >> Cheers, >> >> Mani >> >> On Wed, 22 Jun 2016 07:00 Richard Kolb, wrote: >> >>> Hi Mani, >>> >>> This is a github link! >>> We have had demos of jigsaw, but never anything to actually do a >>> hackaton with with. >>> >>> You are more than welcome to link or refork the repository. I see I >>> forked to the Adopt A JSR by mistake. >>> >>> Regards, >>> Richard. >>> On 22 Jun 2016 12:11 AM, "Mani Sarkar" wrote: >>> >>>> Really great work, our folks at LJC could use it at the Hackathons. >>>> >>>> We also have this repo: https://github.com/AdoptOpenJDK/jdk9-jigsaw, >>>> any chance of link these together or also pouring some of the goodies from >>>> your repo into this - just an idea, still raw. >>>> >>>> Cheers, >>>> Mani >>>> >>>> On Tue, 21 Jun 2016 at 07:32 Richard Kolb wrote: >>>> >>>>> Hi Martijn, >>>>> >>>>> That is a fantastic idea! >>>>> Perhaps you could set up a wiki like the Adopt A JSR wiki that shows >>>>> which >>>>> JUGs are involved in which JEP and where testing is needed ? >>>>> >>>>> As a side note, I posted a question on how to set the JVM arguments on >>>>> the >>>>> child jshell JVM a few months ago on this mailing list (and on a >>>>> weekend). >>>>> Michel Trudeau from Oracle responded and said he would add a feature >>>>> request. A couple of builds later "-R" was added to jshell. >>>>> >>>>> A special and public thanks to Michel! >>>>> >>>>> regards, >>>>> Richard. >>>>> >>>>> On 20 June 2016 at 21:00, Martijn Verburg >>>>> wrote: >>>>> >>>>> > Hi Richard, >>>>> > >>>>> > I've informally asked a few of the leads to highlight any areas of >>>>> Java 9 >>>>> > that might need some early focus, should give us some nice future >>>>> direction. >>>>> > >>>>> > I think this is really great work, it would be great if everyone on >>>>> this >>>>> > list can start telling their communities and get the forks and PRs >>>>> coming >>>>> > in! >>>>> > >>>>> > Cheers, >>>>> > Martijn >>>>> > >>>>> > On 20 June 2016 at 18:58, Richard Kolb wrote: >>>>> > >>>>> >> Hi Rahman, >>>>> >> >>>>> >> jshell took centre stage with the new http2 client, letsencrypt, and >>>>> >> local variable type inference. >>>>> >> IDEs were not allowed. >>>>> >> >>>>> >> The idea was that your could not really prepare for the hackathon >>>>> and you >>>>> >> needed to complete a step to discover the next step. I could put it >>>>> in >>>>> >> training material, but I think it would be a bit boring ;-) >>>>> >> >>>>> >> All in all there were five steps. This was the leader board >>>>> >> after >>>>> the >>>>> >> hackaton. >>>>> >> >>>>> >> regards, >>>>> >> Richard. >>>>> >> >>>>> >> On 20 June 2016 at 19:13, Rahman USTA >>>>> wrote: >>>>> >> >>>>> >>> Richard, Very good to gamify learning Java 9. How many challenges >>>>> does >>>>> >>> it have ? >>>>> >>> >>>>> >>> Is it possible to see them in a document? (training/hackathon >>>>> material) >>>>> >>> >>>>> >>> Thanks. >>>>> >>> >>>>> >>> 2016-06-20 19:56 GMT+03:00 Richard Kolb : >>>>> >>> >>>>> >>>> Thanks Martijn. >>>>> >>>> If anyone wants to see it online, I have re-enabled it. >>>>> >>>> https://jozijugdojo.co.za/ >>>>> >>>> >>>>> >>>> >>>>> >>>> On 20 June 2016 at 15:49, Martijn Verburg < >>>>> martijnverburg at gmail.com> >>>>> >>>> wrote: >>>>> >>>> >>>>> >>>> > Very cool, thanks Richard! >>>>> >>>> > >>>>> >>>> > Cheers, >>>>> >>>> > Martijn >>>>> >>>> > >>>>> >>>> > On 20 June 2016 at 14:21, Richard Kolb >>>>> wrote: >>>>> >>>> > >>>>> >>>> >> Hello everyone, >>>>> >>>> >> >>>>> >>>> >> This is the source code for the Java 9 Gamified hackathon >>>>> >>>> >> that was >>>>> done on >>>>> >>>> the >>>>> >>>> >> 4'th of June 2016 at the Jozi-JUG. >>>>> >>>> >> https://github.com/Adopt-a-JSR/gamified-java9-hackathon >>>>> >>>> >> >>>>> >>>> >> The app works on Java 9 and exposes HTTP 2 using Springboot and >>>>> >>>> Undertow. >>>>> >>>> >> >>>>> >>>> >> It's all under the "Unlicense " so >>>>> please >>>>> >>>> feel >>>>> >>>> >> free >>>>> >>>> >> to do whatever you want with it. >>>>> >>>> >> >>>>> >>>> >> regards, >>>>> >>>> >> Richard. >>>>> >>>> >> >>>>> >>>> > >>>>> >>>> > >>>>> >>>> >>>>> >>> >>>>> >>> >>>>> >>> >>>>> >>> -- >>>>> >>> Rahman USTA >>>>> >>> Istanbul JUG >>>>> >>> https://github.com/rahmanusta >>>>> >>> >>>>> >> >>>>> >> >>>>> > >>>>> >>>> -- >>>> @theNeomatrix369 * | **Blog >>>> ** | *LJC Associate & LJC >>>> Advocate (@adoptopenjdk & @adoptajsr programs) >>>> *Meet-a-Project - *MutabilityDetector >>>> * | **Bitbucket >>>> * * | **Github >>>> * * | **LinkedIn >>>> * >>>> *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ >>>> >>>> *Don't chase success, rather aim for "Excellence", and success will >>>> come chasing after you!* >>>> >>> -- >> @theNeomatrix369 * | **Blog >> ** | *LJC Associate & LJC Advocate >> (@adoptopenjdk & @adoptajsr programs) >> *Meet-a-Project - *MutabilityDetector >> * | **Bitbucket >> * * | **Github >> * * | **LinkedIn >> * >> *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ >> >> *Don't chase success, rather aim for "Excellence", and success will come >> chasing after you!* >> > > From abdul.kolarkunnu at oracle.com Fri Jul 8 01:48:27 2016 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Fri, 8 Jul 2016 01:48:27 +0000 (UTC) Subject: JDK 9 build 125 test results now available Message-ID: JDK 9 ea build 125 test results are now available at http://www.java.net/download/openjdk/testresults/9/testresults.html The jdk test results contain 18 differences from the build 124 test results. There is 1 testcase failure, this failure is under investigation. 0: /home/jtest/merge9/124/jdk/JTwork pass: 5,860; fail: 12; not run: 2,097 1: /home/jtest/merge9/125/jdk/JTwork pass: 5,874; fail: 10; not run: 2,095 0 1 Test --- pass com/sun/jndi/ldap/SimpleClientIdHashCode.java fail pass java/io/Reader/Skip.java fail pass java/io/Reader/SkipNegative.java fail pass java/io/SequenceInputStream/ConstructorNull.java --- pass java/lang/Runtime/shutdown/ShutdownInterruptedMain.java --- pass java/net/HttpURLConnection/NoProxyTest.java pass --- javax/net/ssl/TLS/TestJSSE.java --- pass javax/net/ssl/TLS/TestJSSEClientDefaultProtocol.java --- pass javax/net/ssl/TLS/TestJSSEClientProtocol.java --- pass javax/net/ssl/TLS/TestJSSENoCommonProtocols.java --- pass javax/net/ssl/TLS/TestJSSEServerProtocol.java --- pass javax/rmi/PortableRemoteObject/8146975/RmiIiopReturnValueTest.java --- pass javax/xml/bind/JAXBContext/JAXBContextWithAbstractFactory.java --- pass javax/xml/bind/JAXBContext/JAXBContextWithLegacyFactory.java --- pass javax/xml/bind/JAXBContext/JAXBContextWithSubclassedFactory.java --- pass sun/security/pkcs11/rsa/TestKeyPairGenerator.java pass fail sun/tools/jstatd/TestJstatdPort.java --- pass tools/jlink/plugins/IncludeLocalesPluginTest.java 18 differences The hotspot test results contain 1 difference from the build 124 test results. There is 1 testcase failure, this failure is under investigation. 0: /home/jtest/merge9/124/hotspot/JTwork pass: 1,257; fail: 4; error: 7; not run: 57 1: /home/jtest/merge9/125/hotspot/JTwork pass: 1,256; fail: 5; error: 7; not run: 57 0 1 Test pass fail compiler/rangechecks/TestRangeCheckEliminationDisabled.java 1 differences The langtools test results contain 1 difference from the build 124 test results. No new testcase failures found. 0: /home/jtest/merge9/124/langtools/JTwork pass: 3,436; not run: 271 1: /home/jtest/merge9/125/langtools/JTwork pass: 3,437; not run: 271 0 1 Test --- pass tools/javac/classfiles/attributes/LocalVariableTable/T8136453/T8136453.java 1 differences The nashorn test result is available at http://download.java.net/openjdk/testresults/9/archives/125/emailable-report.html -- Regards, Abdul Muneer Quality Engineer Oracle, Bangalore, India From dalibor.topic at oracle.com Fri Jul 8 12:54:39 2016 From: dalibor.topic at oracle.com (dalibor topic) Date: Fri, 8 Jul 2016 14:54:39 +0200 Subject: JDK 9 Outreach page updated for JEP 288 Message-ID: Hi, I updated https://wiki.openjdk.java.net/display/Adoption/JDK+9+Outreach to include a section on JEP 288: Disable SHA-1 Certificates, which has now been targeted for JDK 9. [1] cheers, dalibor topic [1] http://mail.openjdk.java.net/pipermail/jdk9-dev/2016-July/004521.html -- Dalibor Topic | Principal Product Manager Phone: +494089091214 | Mobile: +491737185961 ORACLE Deutschland B.V. & Co. KG | K?hneh?fe 5 | 22761 Hamburg ORACLE Deutschland B.V. & Co. KG Hauptverwaltung: Riesstr. 25, D-80992 M?nchen Registergericht: Amtsgericht M?nchen, HRA 95603 Komplement?rin: ORACLE Deutschland Verwaltung B.V. Hertogswetering 163/167, 3543 AS Utrecht, Niederlande Handelsregister der Handelskammer Midden-Niederlande, Nr. 30143697 Gesch?ftsf?hrer: Alexander van der Ven, Jan Schultheiss, Val Maher Oracle is committed to developing practices and products that help protect the environment From martijnverburg at gmail.com Sun Jul 10 20:40:29 2016 From: martijnverburg at gmail.com (Martijn Verburg) Date: Sun, 10 Jul 2016 13:40:29 -0700 Subject: JDK 9 Outreach page updated for JEP 288 In-Reply-To: References: Message-ID: Cool, thanks Dalibor - it's a good one for people to check (and disable other old/unsafe certs) Cheers, Martijn On 8 July 2016 at 05:54, dalibor topic wrote: > Hi, > > I updated https://wiki.openjdk.java.net/display/Adoption/JDK+9+Outreach > to include a section on JEP 288: Disable SHA-1 Certificates, which has now > been targeted for JDK 9. [1] > > cheers, > dalibor topic > > [1] http://mail.openjdk.java.net/pipermail/jdk9-dev/2016-July/004521.html > -- > Dalibor Topic | Principal Product Manager > Phone: +494089091214 | Mobile: +491737185961 > > > ORACLE Deutschland B.V. & Co. KG | K?hneh?fe 5 | 22761 Hamburg > > ORACLE Deutschland B.V. & Co. KG > Hauptverwaltung: Riesstr. 25, D-80992 M?nchen > Registergericht: Amtsgericht M?nchen, HRA 95603 > > Komplement?rin: ORACLE Deutschland Verwaltung B.V. > Hertogswetering 163/167, 3543 AS Utrecht, Niederlande > Handelsregister der Handelskammer Midden-Niederlande, Nr. 30143697 > Gesch?ftsf?hrer: Alexander van der Ven, Jan Schultheiss, Val Maher > > Oracle is committed to developing > practices and products that help protect the environment > From abdul.kolarkunnu at oracle.com Tue Jul 12 06:08:47 2016 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Mon, 11 Jul 2016 23:08:47 -0700 (PDT) Subject: JDK 8u112 b02 test results now available Message-ID: <34802f19-7f71-4eef-9c18-68e3e0fdbce8@default> JDK 8u112 ea b02 test results are now available at http://www.java.net/download/openjdk/testresults/8/testresults.html The jdk test results contain 5 differences from the build b01 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b01/jdk/JTwork pass: 5,034; fail: 18; error: 1; not run: 1,085 1: /home/jtest/merge8/jdk8u112-b02/jdk/JTwork pass: 5,039; fail: 14; not run: 1,085 0 1 Test fail pass com/sun/crypto/provider/Cipher/Blowfish/TestCipherBlowfish.java fail pass com/sun/crypto/provider/Cipher/DES/TestCipherDES.java fail pass com/sun/crypto/provider/Cipher/DES/TestCipherDESede.java fail pass javax/rmi/PortableRemoteObject/8146975/RmiIiopReturnValueTest.java error pass sun/tools/jstatd/TestJstatdExternalRegistry.java 5 differences The hotspot test results contain 1 difference from the build b01 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b01/hotspot/JTwork pass: 651; fail: 43; error: 4; not run: 20 1: /home/jtest/merge8/jdk8u112-b02/hotspot/JTwork pass: 652; fail: 42; error: 4; not run: 20 0 1 Test fail pass compiler/stringopts/TestStringObjectInitialization.java 1 differences The langtools test results contain 4 differences from the build b01 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b01/langtools/JTwork pass: 3,109; error: 2; not run: 7 1: /home/jtest/merge8/jdk8u112-b02/langtools/JTwork pass: 3,109; error: 2; not run: 7 0 1 Test error pass tools/javac/lambda/lambdaExpression/SamConversionComboTest.java pass error tools/javac/processing/options/testPrintProcessorInfo/TestWithXstdout.java pass error tools/javac/types/TestComparisons.java error pass tools/javac/varargs/6199075/T6199075.java 4 differences The nashorn test result is available at http://download.java.net/openjdk/testresults/8/archives8/jdk8u112-b02/emailable-report.html -- Regards, Abdul Muneer Quality Engineer Oracle, Bangalore, India From martijnverburg at gmail.com Wed Jul 13 07:49:09 2016 From: martijnverburg at gmail.com (Martijn Verburg) Date: Wed, 13 Jul 2016 08:49:09 +0100 Subject: Getting started Gitbook Message-ID: Hi Mani, https://neomatrix369.gitbooks.io/book/adoptopenjdk/adoptopenjdk-getting-started-kit is 404'ing - is that where the guide still resides? Cheers, Martijn From eddu.melendez at gmail.com Wed Jul 13 07:53:48 2016 From: eddu.melendez at gmail.com (=?UTF-8?B?RWRkw7ogTWVsw6luZGV6IEdvbnphbGVz?=) Date: Wed, 13 Jul 2016 17:53:48 +1000 Subject: Getting started Gitbook In-Reply-To: References: Message-ID: Hi, Here ir the link https://adoptopenjdk.gitbooks.io/adoptopenjdk-getting-started-kit/content/en/ *Edd? Mel?ndez Gonzales* *eddu.melendez at gmail.com* *@eddumelendez* On Wed, Jul 13, 2016 at 5:49 PM, Martijn Verburg wrote: > Hi Mani, > > > https://neomatrix369.gitbooks.io/book/adoptopenjdk/adoptopenjdk-getting-started-kit > is 404'ing - is that where the guide still resides? > > Cheers, > Martijn > From martijnverburg at gmail.com Wed Jul 13 07:55:15 2016 From: martijnverburg at gmail.com (Martijn Verburg) Date: Wed, 13 Jul 2016 08:55:15 +0100 Subject: Getting started Gitbook In-Reply-To: References: Message-ID: Thanks, I've updated the wiki accordingly. Cheers, Martijn On 13 July 2016 at 08:53, Edd? Mel?ndez Gonzales wrote: > Hi, > > Here ir the link > https://adoptopenjdk.gitbooks.io/adoptopenjdk-getting-started-kit/content/en/ > > *Edd? Mel?ndez Gonzales* > *eddu.melendez at gmail.com* > *@eddumelendez* > > > > On Wed, Jul 13, 2016 at 5:49 PM, Martijn Verburg > wrote: > >> Hi Mani, >> >> >> https://neomatrix369.gitbooks.io/book/adoptopenjdk/adoptopenjdk-getting-started-kit >> is 404'ing - is that where the guide still resides? >> >> Cheers, >> Martijn >> > > From eddu.melendez at gmail.com Wed Jul 13 07:57:46 2016 From: eddu.melendez at gmail.com (=?UTF-8?B?RWRkw7ogTWVsw6luZGV6IEdvbnphbGVz?=) Date: Wed, 13 Jul 2016 17:57:46 +1000 Subject: Getting started Gitbook In-Reply-To: References: Message-ID: Martijn, I think that you can also put the link in the github repository . So, people looking at the repo can go to the guide easily. *Edd? Mel?ndez Gonzales* *eddu.melendez at gmail.com* *@eddumelendez* On Wed, Jul 13, 2016 at 5:55 PM, Martijn Verburg wrote: > Thanks, I've updated the wiki accordingly. > > Cheers, > Martijn > > On 13 July 2016 at 08:53, Edd? Mel?ndez Gonzales > wrote: > >> Hi, >> >> Here ir the link >> https://adoptopenjdk.gitbooks.io/adoptopenjdk-getting-started-kit/content/en/ >> >> *Edd? Mel?ndez Gonzales* >> *eddu.melendez at gmail.com* >> *@eddumelendez* >> >> >> >> On Wed, Jul 13, 2016 at 5:49 PM, Martijn Verburg < >> martijnverburg at gmail.com> wrote: >> >>> Hi Mani, >>> >>> >>> https://neomatrix369.gitbooks.io/book/adoptopenjdk/adoptopenjdk-getting-started-kit >>> is 404'ing - is that where the guide still resides? >>> >>> Cheers, >>> Martijn >>> >> >> > From martijnverburg at gmail.com Wed Jul 13 08:29:52 2016 From: martijnverburg at gmail.com (Martijn Verburg) Date: Wed, 13 Jul 2016 09:29:52 +0100 Subject: Getting started Gitbook In-Reply-To: References: Message-ID: On 13 July 2016 at 08:57, Edd? Mel?ndez Gonzales wrote: > > https://adoptopenjdk.gitbooks.io/adoptopenjdk-getting-started-kit/content/en/ Done thanks. Cheers, Martijn From sadhak001 at gmail.com Wed Jul 13 17:23:08 2016 From: sadhak001 at gmail.com (Mani Sarkar) Date: Wed, 13 Jul 2016 17:23:08 +0000 Subject: Getting started Gitbook In-Reply-To: References: Message-ID: It's been moved to the new address, no resolution to the 404 from gitbook :-( On Wed, 13 Jul 2016 09:30 Martijn Verburg, wrote: > On 13 July 2016 at 08:57, Edd? Mel?ndez Gonzales > wrote: > > > > > > https://adoptopenjdk.gitbooks.io/adoptopenjdk-getting-started-kit/content/en/ > > > Done thanks. > > Cheers, > Martijn > -- @theNeomatrix369 * | **Blog ** | *LJC Associate & LJC Advocate (@adoptopenjdk & @adoptajsr programs) *Meet-a-Project - *MutabilityDetector * | **Bitbucket * * | **Github * * | **LinkedIn * *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ *Don't chase success, rather aim for "Excellence", and success will come chasing after you!* From abdul.kolarkunnu at oracle.com Fri Jul 15 16:37:29 2016 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Fri, 15 Jul 2016 09:37:29 -0700 (PDT) Subject: JDK 9 build 126 test results now available Message-ID: <0cf1ea96-6c1c-4429-9de8-afe46b48f36b@default> JDK 9 ea build 126 test results are now available at http://www.java.net/download/openjdk/testresults/9/testresults.html The jdk test results contain 14 differences from the build 125 test results. There are 6 testcase failures, these failures are under investigation. 0: /home/jtest/merge9/125/jdk/JTwork pass: 5,874; fail: 10; not run: 2,095 1: /home/jtest/merge9/126/jdk/JTwork pass: 5,872; fail: 15; error: 1; not run: 2,096 0 1 Test pass fail java/io/Reader/Skip.java pass fail java/io/Reader/SkipNegative.java pass fail java/io/SequenceInputStream/ConstructorNull.java pass fail java/io/SequenceInputStream/LotsOfStreams.java pass fail java/io/Serializable/arraySuidConflict/Write.java --- pass java/lang/invoke/VarHandles/VarHandleTestAccessModeMethodNames.java pass error java/net/httpclient/SplitResponse.java pass --- java/net/httpclient/http2/BasicTest.java --- pass java/util/logging/FileHandlerMaxLocksTest.java --- pass sun/text/resources/JavaTimeSupplementaryTest.java pass fail sun/tools/jps/TestJpsJar.java fail pass sun/tools/jstatd/TestJstatdPort.java --- pass tools/jar/multiRelease/Basic.java --- pass tools/launcher/modules/dryrun/DryRunTest.java 14 differences The hotspot test results contain 17 differences from the build 125 test results. No new testcase failures found. 0: /home/jtest/merge9/125/hotspot/JTwork pass: 1,256; fail: 5; error: 7; not run: 57 1: /home/jtest/merge9/126/hotspot/JTwork pass: 1,266; fail: 3; error: 8; not run: 55 0 1 Test --- pass compiler/cpuflags/TestSSE4Disabled.java fail error compiler/floatingpoint/Test15FloatJNIArgs.java pass --- compiler/jvmci/compilerToVM/GetResolvedJavaTypeTest.java --- pass compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.java --- pass compiler/stable/TestStableMismatched.java --- pass compiler/uncommontrap/DeoptReallocFailure.java fail pass gc/TestNUMAPageSize.java --- pass gc/metaspace/TestMetaspaceCMSCancel.java pass --- runtime/SharedArchiveFile/DefaultUseWithClient.java pass --- runtime/Unsafe/GetKlassPointerGetJavaMirror.java --- pass runtime/classFileParserBug/TestBadClassName.java --- pass runtime/modules/ModuleStress/ExportModuleStressTest.java --- pass serviceability/dcmd/framework/HelpTest.java --- pass serviceability/dcmd/framework/InvalidCommandTest.java --- pass serviceability/dcmd/framework/VMVersionTest.java --- pass serviceability/jvmti/GetObjectSizeClass.java --- pass serviceability/tmtools/jstat/GcCapacityTest.java 17 differences The langtools test results contain 5 differences from the build 125 test results. . There is 1 testcase failure, this failure is under investigation. 0: /home/jtest/merge9/125/langtools/JTwork pass: 3,437; not run: 271 1: /home/jtest/merge9/126/langtools/JTwork pass: 3,441; fail: 1; not run: 273 0 1 Test --- pass tools/javac/T8159970/TypeEqualityInInferenceTest.java --- pass tools/javac/file/T8132857.java --- pass tools/javac/importscope/T8148131/A.java --- fail tools/javac/modules/T8159439/NPEForModuleInfoWithNonZeroSuperClassTest.java --- pass tools/javac/processing/8132446/T8132446.java 5 differences The nashorn test result is available at http://download.java.net/openjdk/testresults/9/archives/126/emailable-report.html -- Regards, Abdul Muneer Quality Engineer Oracle, Bangalore, India From abdul.kolarkunnu at oracle.com Tue Jul 19 07:27:34 2016 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Tue, 19 Jul 2016 00:27:34 -0700 (PDT) Subject: JDK 9 build 127 test results now available Message-ID: <77790cb9-1ab8-411d-862f-d3ffbefbc918@default> JDK 9 ea build 127 test results are now available at http://www.java.net/download/openjdk/testresults/9/testresults.html The jdk test results contain 30 differences from the build 126 test results. There are 4 testcase failures, these failures are under investigation. 0: /home/jtest/merge9/126/jdk/JTwork pass: 5,872; fail: 15; error: 1; not run: 2,096 1: /home/jtest/merge9/127/jdk/JTwork pass: 5,863; fail: 18; not run: 2,123 0 1 Test pass fail java/io/Serializable/auditStreamSubclass/AuditStreamSubclass.java pass fail java/io/Serializable/available/Available.java pass fail java/io/Serializable/backRefCNFException/Write.java --- pass java/lang/annotation/AnnotationVerifier.java --- pass java/lang/annotation/typeAnnotations/NoNpeOnMissingAnnotation.java --- pass java/lang/invoke/LoopCombinatorLongSignatureTest.java pass --- java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessBoolean.java pass --- java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessByte.java pass --- java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessChar.java pass --- java/lang/invoke/VarHandles/VarHandleTestMethodHandleAccessShort.java pass --- java/lang/management/MemoryMXBean/Pending.java pass --- java/lang/management/MemoryMXBean/PendingAllGC.sh error pass java/net/httpclient/SplitResponse.java --- pass java/util/stream/test/org/openjdk/tests/java/util/stream/IntPrimitiveOpsTests.java --- pass javax/imageio/plugins/jpeg/JpegMultipleEOITest.java --- pass javax/net/ssl/ciphersuites/ECCurvesconstraints.java --- pass sun/security/krb5/config/Semicolon.java --- pass sun/security/tools/keytool/PrintSSL.java pass --- sun/security/tools/keytool/printssl.sh --- pass sun/security/x509/URICertStore/ExtensionsWithLDAP.java fail --- sun/tools/jps/TestJpsJar.java pass fail sun/tools/jstatd/TestJstatdPort.java pass --- tools/jlink/asmplugin/AddForgetResourcesTest.java pass --- tools/jlink/asmplugin/BasicTest.java pass --- tools/jlink/asmplugin/IdentityPluginTest.java pass --- tools/jlink/asmplugin/NegativeTest.java pass --- tools/jlink/asmplugin/PackageMappingTest.java pass --- tools/jlink/asmplugin/SortingTest.java pass --- tools/jlink/asmplugin/VisitorTest.java pass --- tools/jlink/plugins/PluginOrderTest.java 30 differences The hotspot test results contain 11 differences from the build 126 test results. There are 3 testcase failures, these failures are under investigation. 0: /home/jtest/merge9/126/hotspot/JTwork pass: 1,266; fail: 3; error: 8; not run: 55 1: /home/jtest/merge9/127/hotspot/JTwork pass: 1,267; fail: 4; error: 8; not run: 57 0 1 Test fail pass compiler/compilercontrol/mixed/RandomCommandsTest.java fail pass compiler/compilercontrol/mixed/RandomValidCommandsTest.java pass --- compiler/jvmci/compilerToVM/ReprofileTest.java --- pass compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/MaxOopMapStackOffsetTest.java pass --- compiler/jvmci/jdk.vm.ci.hotspot.test/src/jdk/vm/ci/hotspot/test/MethodHandleAccessProviderTest.java pass fail compiler/loopopts/TestPredicateLostDependency.java pass fail compiler/membars/DekkerTest.java --- pass compiler/stringopts/TestStringObjectInitialization.java --- pass compiler/unsafe/JdkInternalMiscUnsafeUnalignedAccess.java pass fail gc/TestNUMAPageSize.java --- pass runtime/ConstantPool/TestMethodHandleConstant.java 11 differences The langtools test results contain 2 differences from the build 126 test results. No new testcase failures found. 0: /home/jtest/merge9/126/langtools/JTwork pass: 3,441; fail: 1; not run: 273 1: /home/jtest/merge9/127/langtools/JTwork pass: 3,443; fail: 1; not run: 273 0 1 Test --- pass tools/javac/T8048543/InferenceVariableInstantiatedUnexpectedlyTest.java --- pass tools/javac/annotations/typeAnnotations/classfile/BridgeShouldHaveNoInteriorAnnotationsTest.java 2 differences The nashorn test result is available at http://download.java.net/openjdk/testresults/9/archives/127/emailable-report.html -- Regards, Abdul Muneer Quality Engineer Oracle, Bangalore, India From sadhak001 at gmail.com Thu Jul 21 21:46:30 2016 From: sadhak001 at gmail.com (Mani Sarkar) Date: Thu, 21 Jul 2016 21:46:30 +0000 Subject: AsmTools 6.0 Message-ID: Hi all, FYI - starting this week the Jenkins build job will only build AsmTools 6.0 and no longer provide the prior version 5.0. https://adopt-openjdk.ci.cloudbees.com/job/asmtools/ This has been on request from OpenJDK team that maintains this project. Cheers, Mani -- @theNeomatrix369 * | **Blog ** | *LJC Associate & LJC Advocate (@adoptopenjdk & @adoptajsr programs) *Meet-a-Project - *MutabilityDetector * | **Bitbucket * * | **Github * * | **LinkedIn * *Come to Devoxx UK 2016:* http://www.devoxx.co.uk/ *Don't chase success, rather aim for "Excellence", and success will come chasing after you!* From rory.odonnell at oracle.com Fri Jul 22 09:27:22 2016 From: rory.odonnell at oracle.com (Rory O'Donnell) Date: Fri, 22 Jul 2016 10:27:22 +0100 Subject: Early Access builds of JDK 8u112 b03, JDK 9 b128 are available on java.net Message-ID: Hi All, Early Access b128 for JDK 9 is available on java.net, summary of changes are listed here . Early Access b127 (#5304) for JDK 9 with Project Jigsaw is available on java.net, summary of changes are listed here Early Access b03 for JDK 8u112 is available on java.net, summary of changes are listed here Alan Bateman posted new EA builds contain initial implementation of current proposals , more info [0] The jigsaw/jake forest has been updated with an initial implementation of the proposals that Mark brought to the jpms-spec-experts mailing list last week. For those that don't build from source then the EA build/downloads [1] has also been refreshed. Rgds,Rory [0] http://mail.openjdk.java.net/pipermail/jigsaw-dev/2016-July/008467.html [1] https://jdk9.java.net/jigsaw/ -- Rgds,Rory O'Donnell Quality Engineering Manager Oracle EMEA , Dublin, Ireland From abdul.kolarkunnu at oracle.com Tue Jul 26 07:26:48 2016 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Tue, 26 Jul 2016 00:26:48 -0700 (PDT) Subject: JDK 8u112 b03 test results now available Message-ID: JDK 8u112 ea b03 test results are now available at http://www.java.net/download/openjdk/testresults/8/testresults.html The jdk test results contain 13 differences from the build b02 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b02/jdk/JTwork pass: 5,039; fail: 14; not run: 1,085 1: /home/jtest/merge8/jdk8u112-b03/jdk/JTwork pass: 5,049; fail: 14; error: 2; not run: 1,088 0 1 Test --- pass com/sun/jndi/ldap/SimpleClientIdHashCode.java --- pass javax/management/MBeanServer/ExceptionTest.java --- pass javax/management/mxbean/MXBeanExceptionHandlingTest.java --- pass javax/management/mxbean/MXBeanInteropTest1.java --- pass javax/management/mxbean/MXBeanInteropTest2.java --- pass javax/management/mxbean/MXBeanLoadingTest1.java --- pass javax/management/mxbean/MXBeanNotifTest.java --- pass javax/management/mxbean/MXBeanWeirdParamTest.java --- pass javax/management/query/SupportedQueryTypesTest.java --- pass javax/management/security/AuthorizationTest.java --- error javax/management/security/SecurityTest.java --- pass sun/security/krb5/config/Semicolon.java pass error sun/tools/jstatd/TestJstatdExternalRegistry.java 13 differences The hotspot test results contain 1 difference from the build b02 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b02/hotspot/JTwork pass: 652; fail: 42; error: 4; not run: 20 1: /home/jtest/merge8/jdk8u112-b03/hotspot/JTwork pass: 653; fail: 42; error: 4; not run: 20 0 1 Test --- pass runtime/classFileParserBug/BadNameAndType.java 1 differences The langtools test results contain 3 differences from the build b02 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b02/langtools/JTwork pass: 3,109; error: 2; not run: 7 1: /home/jtest/merge8/jdk8u112-b03/langtools/jtreg/JTwork pass: 3,108; error: 3; not run: 7 0 1 Test error pass tools/javac/processing/options/testPrintProcessorInfo/TestWithXstdout.java pass error tools/javac/tree/JavacTreeScannerTest.java pass error tools/javac/varargs/7043922/T7043922.java 3 differences The nashorn test result is available at http://download.java.net/openjdk/testresults/8/archives8/jdk8u112-b03/emailable-report.html -- Regards, Abdul Muneer Quality Engineer Oracle, Bangalore, India From abdul.kolarkunnu at oracle.com Wed Jul 27 07:02:17 2016 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Wed, 27 Jul 2016 00:02:17 -0700 (PDT) Subject: JDK 9 build 128 test results now available Message-ID: <9a8d2a5a-c4a7-4075-bd84-b77448257fc3@default> JDK 9 ea build 128 test results are now available at http://www.java.net/download/openjdk/testresults/9/testresults.html The jdk test results contain 16 differences from the build 127 test results. No new testcase failures found. 0: /home/jtest/merge9/127/jdk/JTwork pass: 5,863; fail: 18; not run: 2,123 1: /home/jtest/merge9/128/jdk/JTwork pass: 5,877; fail: 9; not run: 2,123 0 1 Test fail pass java/io/Reader/Skip.java fail pass java/io/Reader/SkipNegative.java fail pass java/io/SequenceInputStream/ConstructorNull.java fail pass java/io/SequenceInputStream/LotsOfStreams.java fail pass java/io/Serializable/arraySuidConflict/Write.java fail pass java/io/Serializable/auditStreamSubclass/AuditStreamSubclass.java fail pass java/io/Serializable/available/Available.java fail pass java/io/Serializable/backRefCNFException/Write.java --- pass java/lang/Runtime/Version/VersionProps.java --- pass java/util/Locale/Bug8154797.java --- pass java/util/logging/SystemLoggerConfigTest.java --- pass java/util/zip/InflaterInputStream/TestAvailable.java --- pass sun/net/www/protocol/http/NULLTargetInfoTest.java --- pass sun/security/tools/jarsigner/AltProvider.java pass --- sun/security/tools/keytool/AltProviderPath.sh fail pass sun/tools/jstatd/TestJstatdPort.java 16 differences The hotspot test results contain 7 differences from the build 127 test results. There are 2 testcase failures, these failures are under investigation. 0: /home/jtest/merge9/127/hotspot/JTwork pass: 1,267; fail: 4; error: 8; not run: 57 1: /home/jtest/merge9/128/hotspot/JTwork pass: 1,270; fail: 6; error: 8; not run: 57 0 1 Test --- pass gc/g1/humongousObjects/TestNoAllocationsInHRegions.java --- pass runtime/Final/PutfieldError.java --- pass runtime/SharedArchiveFile/SharedStringsDedup.java pass fail runtime/Thread/Fibonacci.java pass fail runtime/Thread/TestThreadDumpMonitorContention.java --- pass runtime/modules/ModuleStress/ModuleStress.java --- pass runtime/modules/ModuleStress/ModuleStressGC.java 7 differences The langtools test results contain 3 differences from the build 127 test results. No new testcase failures found. 0: /home/jtest/merge9/127/langtools/JTwork pass: 3,443; fail: 1; not run: 273 1: /home/jtest/merge9/128/langtools/JTwork pass: 3,446; fail: 1; not run: 271 0 1 Test --- pass com/sun/javadoc/testTypeAnnotations/TestTypeAnnotations.java --- pass com/sun/javadoc/typeAnnotations/smoke/TestSmoke.java --- pass tools/javac/AnonymousClass/AnonymousClassFlags.java 3 differences The nashorn test result is available at http://download.java.net/openjdk/testresults/9/archives/128/emailable-report.html -- Regards, Abdul Muneer Quality Engineer Oracle, Bangalore, India From abdul.kolarkunnu at oracle.com Thu Jul 28 09:02:23 2016 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Thu, 28 Jul 2016 02:02:23 -0700 (PDT) Subject: JDK 8u112 b04 test results now available Message-ID: <0a0706fb-480d-4775-8fde-89e2beb24b17@default> JDK 8u112 ea b04 test results are now available at http://www.java.net/download/openjdk/testresults/8/testresults.html The jdk test results contain 2 differences from the build b03 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b03/jdk/JTwork pass: 5,049; fail: 14; error: 2; not run: 1,088 1: /home/jtest/merge8/jdk8u112-b04/jdk/JTwork pass: 5,051; fail: 14; error: 1; not run: 1,089 0 1 Test --- pass java/nio/file/WatchService/UpdateInterference.java error pass sun/tools/jstatd/TestJstatdExternalRegistry.java 2 differences The hotspot test results contain 0 differences from the build b03 test results. The langtools test results contain 6 differences from the build b03 test results. No new testcase failures found. 0: /home/jtest/merge8/jdk8u112-b03/langtools/jtreg/JTwork pass: 3,108; error: 3; not run: 7 1: /home/jtest/merge8/jdk8u112-b04/langtools/JTwork pass: 3,108; error: 3; not run: 7 0 1 Test pass error tools/javac/lambda/intersection/IntersectionTargetTypeTest.java pass error tools/javac/lambda/privateMethodReferences/ThirdClass.java error pass tools/javac/tree/JavacTreeScannerTest.java pass error tools/javac/tree/TreePosTest.java error pass tools/javac/types/TestComparisons.java error pass tools/javac/varargs/7043922/T7043922.java 6 differences The nashorn test result is available at http://download.java.net/openjdk/testresults/8/archives8/jdk8u112-b04/emailable-report.html -- Regards, Abdul Muneer Quality Engineer Oracle, Bangalore, India