hg: jdk-updates/jdk11u: 14 new changesets
goetz.lindenmaier at sap.com
goetz.lindenmaier at sap.com
Wed Feb 26 08:32:52 UTC 2020
Changeset: ad96ac1abd29
Author: igerasim
Date: 2020-02-17 16:32 -0800
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/ad96ac1abd29
8163251: Hard coded loop limit prevents reading of smart card data greater than 8k
Reviewed-by: valeriep, rriggs
! src/java.smartcardio/share/classes/sun/security/smartcardio/ChannelImpl.java
Changeset: da239e423cad
Author: rrich
Date: 2020-02-13 16:20 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/da239e423cad
8239005: [TESTBUG] test/hotspot/jtreg/runtime/StackGuardPages/TestStackGuardPages.java: exeinvoke.c: must initialize static state before calling do_overflow()
Reviewed-by: dholmes, clanger
! test/hotspot/jtreg/runtime/StackGuardPages/exeinvoke.c
Changeset: 8a84dd681501
Author: chagedorn
Date: 2020-02-13 15:07 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/8a84dd681501
8237945: CTW: C2 compilation fails with assert(just_allocated_object(alloc_ctl) == ptr) failed: most recent allo
Summary: Removing too strong assertion about array allocation in LibraryCallKit::tightly_coupled_allocation().
Reviewed-by: thartmann, neliasso
! src/hotspot/share/opto/library_call.cpp
+ test/hotspot/jtreg/compiler/arraycopy/TestTightlyCoupledAllocationAssert.java
Changeset: 3c8915168e15
Author: xuelei
Date: 2019-03-21 13:32 -0700
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/3c8915168e15
8221270: Duplicated synchronized keywords in SSLSocketImpl
Reviewed-by: mullan
! src/java.base/share/classes/sun/security/ssl/SSLSocketImpl.java
Changeset: eae99bfc60a2
Author: rhalade
Date: 2020-02-18 16:00 -0800
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/eae99bfc60a2
8225128: Add exception for expiring DocuSign root to VerifyCACerts test
Reviewed-by: clanger
! test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
Changeset: f3d956ce3774
Author: chagedorn
Date: 2020-02-13 15:08 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/f3d956ce3774
8238811: C2: assert(i >= req() || i == 0 || is_Region() || is_Phi()) with -XX:+VerifyGraphEdges
Summary: Fix -XX:+VerifyGraphEdges by additionally handling ArrayCopyNodes and UnlockNodes and add some basic flag testing.
Reviewed-by: roland, neliasso
! src/hotspot/share/opto/node.cpp
+ test/hotspot/jtreg/compiler/c2/TestVerifyGraphEdges.java
Changeset: f9b6a70c465c
Author: clanger
Date: 2020-02-20 11:10 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/f9b6a70c465c
8239466: Loss of precision in counter decay calculation in 11u backport of JDK-8237375
Reviewed-by: mdoerr, simonis
! src/hotspot/share/runtime/compilationPolicy.cpp
Changeset: dae69dfd5499
Author: rschuenemann
Date: 2020-02-13 10:07 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/dae69dfd5499
8238534: Deep sign macOS bundles before bundle archive is being created
Reviewed-by: erikj, clanger
! make/Bundles.gmk
! make/autoconf/spec.gmk.in
Changeset: e2b6b9c681f4
Author: pconcannon
Date: 2019-11-27 16:01 +0000
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/e2b6b9c681f4
8233018: Add a new test to verify that DatagramSocket is not interruptible
Summary: Test added to check the interruptability of DatagramSocket, MulticastSocket and DatagramSocketAdaptor.
Reviewed-by: chegar, dfuchs
+ test/jdk/java/net/DatagramSocket/InterruptibleDatagramSocket.java
Changeset: fb8986cc3563
Author: dfuchs
Date: 2019-08-30 12:44 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/fb8986cc3563
8193596: java/net/DatagramPacket/ReuseBuf.java failed due to timeout
Summary: The test is changed to bind to InetAddress.getLocalHost() instead of binding to the wildcard.
Reviewed-by: alanb, dfuchs, msheppar
Contributed-by: Patrick Concannon <catrick.concannon at oracle.com>
! test/jdk/java/net/DatagramPacket/ReuseBuf.java
Changeset: 56033f32a494
Author: mbaesken
Date: 2020-02-24 10:12 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/56033f32a494
8201349: build broken when configured with --with-zlib=bundled on gcc 7.3
Reviewed-by: clanger, simonis
! make/lib/CoreLibraries.gmk
Changeset: 783a56f3ac1f
Author: stuefe
Date: 2020-02-24 17:24 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/783a56f3ac1f
8220786: Create new switch to redirect error reporting output to stdout or stderr
Reviewed-by: dholmes, goetz
! src/hotspot/share/runtime/arguments.cpp
! src/hotspot/share/runtime/globals.hpp
! src/hotspot/share/utilities/vmError.cpp
+ test/hotspot/jtreg/runtime/ErrorHandling/ErrorFileRedirectTest.java
Changeset: f03574cfc0d7
Author: chagedorn
Date: 2019-12-06 10:00 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/f03574cfc0d7
8229994: assert(false) failed: Bad graph detected in get_early_ctrl_for_expensive
Summary: Fixes wrong idom information set in loop peeling when a loop strip mined loop is involved.
Reviewed-by: vlivanov, thartmann
! src/hotspot/share/opto/loopTransform.cpp
+ test/hotspot/jtreg/compiler/loopopts/PeelingAndLoopStripMining.java
Changeset: 571c180c5106
Author: goetz
Date: 2020-02-26 09:32 +0100
URL: https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/571c180c5106
Added tag jdk-11.0.7+5 for changeset f03574cfc0d7
! .hgtags
More information about the jdk-updates-changes
mailing list