Sergey Bylokhov
497efefa3d
8225116: Test OwnedWindowsLeak.java intermittently fails
...
Reviewed-by: pbansal
2021-01-03 05:08:48 +00:00
Jamil Nimeh
f5ee356540
8179503: Java should support GET OCSP calls
...
Reviewed-by: xuelei
2020-12-31 18:03:54 +00:00
Guoxiong Li
8435f0daf2
8258525: Some existing tests should use /nodynamiccopyright/ instead of the standard header
...
Reviewed-by: jjg
2020-12-30 17:20:54 +00:00
Jesper Wilhelmsson
07c93fab85
Merge
2020-12-29 05:24:20 +00:00
Guoxiong Li
881bceb9a3
8258662: JDK 17ea: Crash compiling instanceof check involving sealed interface
...
Reviewed-by: vromero
2020-12-28 15:32:02 +00:00
Xiaohong Gong
779ee1104c
8257147: [TESTBUG] Set a larger default loop count for the VectorAPI jtreg tests
...
Reviewed-by: psandoz
2020-12-28 02:44:03 +00:00
Guoxiong Li
97c99b5d7d
8216400: improve handling of IOExceptions in JavaCompiler.close()
...
8069116: improve fatal error handling in JavaCompiler
Reviewed-by: jjg
2020-12-26 17:30:39 +00:00
Xue-Lei Andrew Fan
b575dd80b6
8258914: javax/net/ssl/DTLS/RespondToRetransmit.java timed out
...
Reviewed-by: wetmore
2020-12-25 04:25:20 +00:00
Jonathan Gibbons
e2aa724a67
8258941: Test specify the Classpath exception in the header
...
Reviewed-by: vromero
2020-12-24 17:32:25 +00:00
Jesper Wilhelmsson
57217b58bf
Merge
2020-12-24 08:28:24 +00:00
Jonathan Gibbons
c398a8281a
8258916: javac/doclint reports broken HTML on multiline mailto links
...
Reviewed-by: jlaskey, iris
2020-12-24 04:52:49 +00:00
Vicente Romero
23b83c518d
8253954: javac crash when compiling code with enhanced switch expressions with option -Xjcov
...
Reviewed-by: jjg
2020-12-24 01:24:32 +00:00
Daniel D. Daugherty
127582f81e
8258913: ProblemList javax/swing/JComboBox/6559152/bug6559152.java on Linux-X64
...
Reviewed-by: prr
2020-12-23 23:19:18 +00:00
Valerie Peng
78c9fb92aa
8258851: Mismatch in SunPKCS11 provider registration properties and actual implementation
...
Reviewed-by: weijun
2020-12-23 22:36:45 +00:00
Daniel D. Daugherty
8b37c2c58f
8257468: runtime/whitebox/TestWBDeflateIdleMonitors.java fails with Monitor should be deflated.: expected true to equal false
...
Reviewed-by: hseigel
2020-12-23 22:02:09 +00:00
Daniel D. Daugherty
e46edb5528
8258911: ProblemList serviceability/attach/RemovingUnixDomainSocketTest.java on Linux-X64
...
Reviewed-by: amenkov
2020-12-23 20:30:27 +00:00
Prasanta Sadhukhan
91244cc738
8258557: Deproblemlist fixed problemlisted test
...
Reviewed-by: trebari, serb
2020-12-23 16:35:31 +00:00
Sean Coffey
a4e082e985
8253368: TLS connection always receives close_notify exception
...
Reviewed-by: xuelei
2020-12-23 12:26:44 +00:00
Hao Sun
4ea88512dd
8257928: Test image build failure with clang-10 due to -Wmisleading-indentation
...
Reviewed-by: amenkov, cjplummer
2020-12-23 01:32:05 +00:00
Jesper Wilhelmsson
f2bad3a0be
Merge
2020-12-22 21:16:59 +00:00
Daniel D. Daugherty
61e5e393a7
8258832: ProblemList com/sun/jdi/AfterThreadDeathTest.java on Linux-X64
...
Reviewed-by: ccheung, amenkov
2020-12-22 18:59:36 +00:00
Daniel D. Daugherty
eabc9030ab
8258827: ProblemList Naming/DefaultRegistryPort.java and Naming/legalRegistryNames/LegalRegistryNames.java on Windows
...
Reviewed-by: rriggs, msheppar, prr
2020-12-22 17:15:34 +00:00
Daniel D. Daugherty
172af1524d
8258284: clean up issues with nested ThreadsListHandles
...
Reviewed-by: eosterlund, rehn
2020-12-22 14:07:43 +00:00
Daniel D. Daugherty
88dd6a9434
8258802: ProblemList TestJstatdDefaults.java, TestJstatdRmiPort.java, and TestJstatdServer.java
...
Reviewed-by: amenkov, cjplummer
2020-12-22 13:43:17 +00:00
Roberto Castañeda Lozano
3df6ec2fbc
8258682: compiler/intrinsics/mathexact/sanity tests fail with RepeatCompilation
...
Normalize match and suspect counts in the verify() method by the number of
compilation repetitions, if the RepeatCompilation option is used.
Reviewed-by: kvn, chagedorn
2020-12-22 10:04:00 +00:00
Jie Fu
1594372c28
8258584: java/util/HexFormat/HexFormatTest.java fails on x86_32
...
Reviewed-by: rriggs
2020-12-22 02:07:33 +00:00
Guoxiong Li
01d51a101a
8231622: SuppressWarning("serial") ignored on field serialVersionUID
...
Reviewed-by: jjg
2020-12-21 17:50:21 +00:00
Roberto Castañeda Lozano
4e8338eb13
8255763: C2: OSR miscompilation caused by invalid memory instruction placement
...
Disable GCM hoisting of memory-writing nodes for irreducible CFGs. This prevents
GCM from wrongly "hoisting" stores into descendants of their original loop. Such
an "inverted hoisting" can happen due to CFGLoop::compute_freq()'s inaccurate
estimation of frequencies for irreducible CFGs.
Extend CFG verification code by checking that memory-writing nodes are placed in
either their original loop or an ancestor.
Add tests for the reducible and irreducible cases. The former was already
handled correctly before the change (the frequency estimation model prevents
"inverted hoisting" for reducible CFGs), and is just added for coverage.
This change addresses the specific miscompilation issue in a conservative way,
for simplicity and safety. Future work includes investigating if only the
illegal blocks can be discarded as candidates for GCM hoisting, and refining
frequency estimation for irreducible CFGs.
Reviewed-by: kvn, chagedorn
2020-12-21 13:04:24 +00:00
Jesper Wilhelmsson
d234388042
Merge
2020-12-21 09:09:05 +00:00
Christian Hagedorn
8e42efaada
8257513: C2: assert((constant_addr - _masm.code()->consts()->start()) == con.offset())
...
Reviewed-by: kvn, thartmann
2020-12-21 08:06:48 +00:00
Prasanta Sadhukhan
c7c53d016e
8258554: javax/swing/JTable/4235420/bug4235420.java fails in GTK L&F
...
Reviewed-by: serb
2020-12-19 12:00:18 +00:00
Mikael Vidstedt
64644a1072
8253881: Hotspot/Serviceability Terminology Refresh
...
Reviewed-by: kbarrett, tschatzl, dholmes, lfoltan, dcubed
2020-12-19 02:47:28 +00:00
Brent Christian
e680ebeb2f
8258007: Add instrumentation to NativeLibraryTest
...
Reviewed-by: mchung, naoto
2020-12-19 00:17:02 +00:00
Alexandre Iline
6a78b2a2b2
8258645: Bring Jemmy 1.3.11 to JDK test base
...
Reviewed-by: serb
2020-12-18 21:16:35 +00:00
Xin Liu
adf0e23aa2
8257800: CompileCommand TypedMethodOptionMatcher::parse_method_pattern() may over consume
...
Reviewed-by: thartmann, chagedorn, phh
2020-12-18 20:35:38 +00:00
Xue-Lei Andrew Fan
3c488199c4
8169086: DTLS tests fail intermittently with too much loops or timeout
...
Reviewed-by: ascarpino
2020-12-18 18:52:52 +00:00
Jonathan Gibbons
c04c7e1f10
8258002: Update "type" terminology in generated docs
...
Reviewed-by: hannesw
2020-12-18 18:34:25 +00:00
Roger Riggs
1dae45d745
8250523: Remove abortOnException diagnostic option from TestHumongousNonArrayAllocation.java
...
Reviewed-by: kbarrett
2020-12-18 16:34:17 +00:00
Hannes Wallnöfer
45bd3b9ec0
8223607: --override-methods=summary ignores some signature changes
...
Reviewed-by: jjg
2020-12-18 15:46:25 +00:00
Joel Borggrén-Franck
1cc98bde67
8256693: getAnnotatedReceiverType parameterizes types too eagerly
...
Reviewed-by: vromero
2020-12-18 13:34:36 +00:00
Thomas Stuefe
853c04712d
8258469: Cleanup remaining safefetch test coding
...
Reviewed-by: coleenp, dholmes
2020-12-18 08:13:16 +00:00
Sergey Bylokhov
7afb01dce9
8258373: Update the text handling in the JPasswordField
...
Reviewed-by: kizune, prr, psadhukhan
2020-12-18 06:26:16 +00:00
Stuart Marks
cbc3feeb89
8258259: Unicode linebreak matching behavior is incorrect; backout JDK-8235812
...
Reviewed-by: naoto
2020-12-18 00:36:33 +00:00
Nils Eliasson
7320e051ea
8258647: TestCharVect2 is very slow
...
Reviewed-by: vlivanov, kvn
2020-12-17 22:43:00 +00:00
Rajan Halade
9fdfc6dfc6
8225072: Add LuxTrust certificate that is expiring in March 2021 to list of allowed but expired certs
...
8258630: Add expiry exception for QuoVadis root certificate
Backport-of: 666e6c4033
2020-12-17 22:14:25 +00:00
Jesper Wilhelmsson
f15528eb64
Merge
2020-12-17 20:41:37 +00:00
Rajan Halade
666e6c4033
8225072: Add LuxTrust certificate that is expiring in March 2021 to list of allowed but expired certs
...
8258630: Add expiry exception for QuoVadis root certificate
Reviewed-by: ascarpino
2020-12-17 20:27:25 +00:00
Jonathan Gibbons
30ca0a5d4b
8247994: Localize javadoc search
...
Reviewed-by: hannesw, ihse
2020-12-17 18:34:27 +00:00
Vicente Romero
47c180da43
8258515: javac should issue an error if an annotation is nested in a local class or interface
...
Reviewed-by: jjg
2020-12-17 18:08:35 +00:00
Nils Eliasson
cb5a6b1a7d
8258225: compiler/c2/cr6340864/TestIntVect.java runs faster in interpreter
...
Reviewed-by: vlivanov, thartmann, kvn
2020-12-17 17:50:53 +00:00