From gnu.andrew at redhat.com Wed Oct 1 15:01:44 2025 From: gnu.andrew at redhat.com (Andrew Hughes) Date: Wed, 1 Oct 2025 16:01:44 +0100 Subject: [FREEZE] 8u472 NOW FROZEN Message-ID: The release forest: https://github.com/openjdk/jdk8u is frozen as of 2025-09-27 in preparation for release on or after 2025-10-21. The final pre-release tag is jdk8u472-b07. [0] The final release tag will thus be no lower than jdk8u472-b08. [0] https://github.com/openjdk/jdk8u/releases/tag/jdk8u472-b07 Thanks, -- Andrew :) Pronouns: he / him or they / them Red Hat, Inc. (http://www.redhat.com) PGP Key: ed25519/0xCFDA0F9B35964222 (hkp://keys.gnupg.net) Fingerprint = 5132 579D D154 0ED2 3E04 C5A0 CFDA 0F9B 3596 4222 Please contact via e-mail, not proprietary chat networks -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 228 bytes Desc: not available URL: From sgehwolf at openjdk.org Mon Oct 6 08:27:07 2025 From: sgehwolf at openjdk.org (Severin Gehwolf) Date: Mon, 6 Oct 2025 08:27:07 GMT Subject: [jdk8u-dev] Integrated: 8367257: [8u] Problem list CAInterop.java#entrustrootcag4 test In-Reply-To: References: Message-ID: On Tue, 9 Sep 2025 13:40:38 GMT, Severin Gehwolf wrote: > Another problem list to get GHA green (at last). This pull request has now been integrated. Changeset: 652f7a72 Author: Severin Gehwolf URL: https://git.openjdk.org/jdk8u-dev/commit/652f7a7257376869c178d9b796a265582dc8ac93 Stats: 1 line in 1 file changed: 1 ins; 0 del; 0 mod 8367257: [8u] Problem list CAInterop.java#entrustrootcag4 test Reviewed-by: andrew ------------- PR: https://git.openjdk.org/jdk8u-dev/pull/696 From serb at openjdk.org Mon Oct 6 16:17:13 2025 From: serb at openjdk.org (Sergey Bylokhov) Date: Mon, 6 Oct 2025 16:17:13 GMT Subject: [jdk8u-dev] RFR: 8157758: JDK9 does not compile on Linux with GCC 6.1 because left-shifting a negative number has undefined behavior [v3] In-Reply-To: References: Message-ID: > Hi all, > > This pull request contains a backport of commit [4abb5e4a](https://github.com/openjdk/jdk/commit/4abb5e4aafe05871a07d510f002a38298fe4dbb2) from the [openjdk/jdk](https://git.openjdk.org/jdk) repository. > > The commit being backported was authored by Alex Henrie on 23 Jun 2016 and was reviewed by Kim Barrett and Max Ockner. > > Thanks! Sergey Bylokhov has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: - Merge branch 'openjdk:master' into backport-mrserb-4abb5e4a-master - Merge branch 'openjdk:master' into backport-mrserb-4abb5e4a-master - Backport 4abb5e4aafe05871a07d510f002a38298fe4dbb2 ------------- Changes: - all: https://git.openjdk.org/jdk8u-dev/pull/682/files - new: https://git.openjdk.org/jdk8u-dev/pull/682/files/ba79b13c..a3ad0073 Webrevs: - full: https://webrevs.openjdk.org/?repo=jdk8u-dev&pr=682&range=02 - incr: https://webrevs.openjdk.org/?repo=jdk8u-dev&pr=682&range=01-02 Stats: 2577 lines in 48 files changed: 1929 ins; 160 del; 488 mod Patch: https://git.openjdk.org/jdk8u-dev/pull/682.diff Fetch: git fetch https://git.openjdk.org/jdk8u-dev.git pull/682/head:pull/682 PR: https://git.openjdk.org/jdk8u-dev/pull/682 From abakhtin at openjdk.org Tue Oct 7 20:32:28 2025 From: abakhtin at openjdk.org (Alexey Bakhtin) Date: Tue, 7 Oct 2025 20:32:28 GMT Subject: [jdk8u-dev] RFR: 8339280: jarsigner -verify performs cross-checking between CEN and LOC [v2] In-Reply-To: References: Message-ID: On Fri, 19 Sep 2025 18:51:57 GMT, Francisco Ferrari Bihurriet wrote: >> Hi, this is a backport of openjdk/jdk11u-dev#3098. The backport isn't clean, because of the following: >> >> * File paths that require adjustment for 8u >> * In `Main.java`, trivial context differences and code that needs adjustment from 11u to 8u: >> * `java.nio.file.Path.of()` ? `java.nio.file.Paths.get()` >> * `InputStream::transferTo(OutputStream.nullOutputStream())` ? [original code before a review suggestion](https://github.com/openjdk/jdk/pull/23532/commits/ef546f4b778e8a1f43dbedc56a79bb53d169a1e7#diff-7083af3b8473a092987afa0bbb4d1694664649534bac716f6b9cd3c3b9833219L1185-L1186) >> * In the test (`VerifyJarEntryName.java`), code that needs adjustment from 11u to 8u: >> * `@library /test/lib` ? `@library /lib/testlibrary` >> * JUnit 5 ? JUnit 4 >> * `org.junit.jupiter.api.BeforeAll` ? `org.junit.BeforeClass` >> * `org.junit.jupiter.api.BeforeEach` ? `org.junit.Before` >> * `org.junit.jupiter.api.Test` ? `org.junit.Test` >> * `java.nio.file.Path.of()` ? `java.nio.file.Paths.get()` >> * `@BeforeClass`, `@Before` and `@Test` methods must be public >> * Can't use `var` >> * `Arrays.equals(a, start, end, b, 0, b.length)` ? `Arrays.equals(Arrays.copyOfRange(a, start, end), b)` (`Arrays::equals` with offsets not present in 8u) >> * ~~NOTE: for the Japanese manpages translation approach, please refer to openjdk/jdk11u-dev#3098~~ >> * ~~I updated `jdk/src/linux/doc/man/ja/jarsigner.1` and `jdk/src/solaris/doc/sun/man/man1/ja/jarsigner.1` (identical), and left `dk/src/bsd/doc/man/ja/jarsigner.1` untouched (doesn't have any content besides the headers)~~ >> * $\mbox{\color{red}UPDATE}$ (28348b29f892b685d9098c4560128a8bfb206afd): all the internationalized messages have been removed, as they aren't typically included in backports (thanks @jerboaa for letting me know). >> >> #### Related issues ("relates to" Jira issue links) >> >> [JDK-8353299](https://bugs.openjdk.org/browse/JDK-8353299 "VerifyJarEntryName.java test fails") (openjdk/jdk at acd4da49a01760599ec4c325ff6c56f53ba5cc9c) and [JDK-8367782](https://bugs.openjdk.org/browse/JDK-8367782 "VerifyJarEntryName.java: Fix modifyJarEntryName to operate on bytes and re-introduce verifySignatureEntryName") (openjdk/jdk at 1b9a11682d5f73885213822423bfce8dfc17febd) were also included as part of this backport. They are test-only changes that improve the reliability and coverage of `VerifyJarEntryName.java`. >> >> Since `test/hotspot/jtreg/runtime/appcds/SignedJar.java` is ... > > Francisco Ferrari Bihurriet has updated the pull request incrementally with one additional commit since the last revision: > > Remove internationalized messages LGTM CI failures look unrelated All related jarsigner tests passed ------------- Marked as reviewed by abakhtin (Committer). PR Review: https://git.openjdk.org/jdk8u-dev/pull/699#pullrequestreview-3311782848 From aph at openjdk.org Thu Oct 9 16:50:41 2025 From: aph at openjdk.org (Andrew Haley) Date: Thu, 9 Oct 2025 16:50:41 GMT Subject: [jdk8u-dev] RFR: 8153147: Mark java/net/BindException/Test.java as intermittently failing In-Reply-To: References: Message-ID: On Tue, 30 Sep 2025 01:45:33 GMT, SendaoYan wrote: > Hi all, > > I want to backport JDK-8153147 to mark java/net/BindException/Test.java as intermittently failing. The `@key intermittent` will enable this test disable or auto rerun when fails for some setups. Marked as reviewed by aph (Lead). ------------- PR Review: https://git.openjdk.org/jdk8u-dev/pull/703#pullrequestreview-3319813974 From aph at openjdk.org Thu Oct 9 16:51:43 2025 From: aph at openjdk.org (Andrew Haley) Date: Thu, 9 Oct 2025 16:51:43 GMT Subject: [jdk8u-dev] RFR: 8353657: [8u] Test tools/launcher/VersionCheck.java fails with debug build [v3] In-Reply-To: References: <-1iYYpTJ_TFZx6RhRJOw-_nVQhhivtOY0zFWg8E_AgM=.7ade1453-9e17-488d-84a0-449415ee21de@github.com> Message-ID: On Sat, 27 Sep 2025 02:51:26 GMT, SendaoYan wrote: >> Hi all, >> >> Test tools/launcher/VersionCheck.java fails with fastdebug build which report 'jstack.debuginfo: cannot execute binary file'. This failure fixed by [JDK-8237192](https://bugs.openjdk.org/browse/JDK-8237192) in jdk15, only a subset of [JDK-8237192](https://bugs.openjdk.org/browse/JDK-8237192) to fix this test failure. So it's not suitable to backport [JDK-8237192](https://bugs.openjdk.org/browse/JDK-8237192) to jdk8u-dev, then I create this PR to fix this testbug. >> >> This PR skip all the `*.debuginfo` files to check the '-version' or '-J-version'. Change has been verified localy, test-fix only, no risk. > > SendaoYan has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'openjdk:master' into jbs8353657 > - Use NIX_DBGINFO_EXT instead of DEBUGINFO_FILE_EXT > - 8353657: [8u] Test tools/launcher/VersionCheck.java fails with debug build Marked as reviewed by aph (Lead). ------------- PR Review: https://git.openjdk.org/jdk8u-dev/pull/685#pullrequestreview-3319820689 From syan at openjdk.org Fri Oct 10 02:00:19 2025 From: syan at openjdk.org (SendaoYan) Date: Fri, 10 Oct 2025 02:00:19 GMT Subject: [jdk8u-dev] RFR: 8353657: [8u] Test tools/launcher/VersionCheck.java fails with debug build [v3] In-Reply-To: References: <-1iYYpTJ_TFZx6RhRJOw-_nVQhhivtOY0zFWg8E_AgM=.7ade1453-9e17-488d-84a0-449415ee21de@github.com> Message-ID: On Sat, 27 Sep 2025 02:51:26 GMT, SendaoYan wrote: >> Hi all, >> >> Test tools/launcher/VersionCheck.java fails with fastdebug build which report 'jstack.debuginfo: cannot execute binary file'. This failure fixed by [JDK-8237192](https://bugs.openjdk.org/browse/JDK-8237192) in jdk15, only a subset of [JDK-8237192](https://bugs.openjdk.org/browse/JDK-8237192) to fix this test failure. So it's not suitable to backport [JDK-8237192](https://bugs.openjdk.org/browse/JDK-8237192) to jdk8u-dev, then I create this PR to fix this testbug. >> >> This PR skip all the `*.debuginfo` files to check the '-version' or '-J-version'. Change has been verified localy, test-fix only, no risk. > > SendaoYan has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: > > - Merge branch 'openjdk:master' into jbs8353657 > - Use NIX_DBGINFO_EXT instead of DEBUGINFO_FILE_EXT > - 8353657: [8u] Test tools/launcher/VersionCheck.java fails with debug build GHA report several fails: 1. Test CAInterop.java#entrustrootcag4 fails, which has been problemlist by https://github.com/openjdk/jdk8u-dev/pull/696 2. Linux x86 hotspot/tier1 job report test gc/logging/TestGCId.java timed out. I think it's unrelated to this PR. ------------- PR Comment: https://git.openjdk.org/jdk8u-dev/pull/685#issuecomment-3388018360 From syan at openjdk.org Fri Oct 10 02:00:20 2025 From: syan at openjdk.org (SendaoYan) Date: Fri, 10 Oct 2025 02:00:20 GMT Subject: [jdk8u-dev] RFR: 8353657: [8u] Test tools/launcher/VersionCheck.java fails with debug build [v3] In-Reply-To: References: <-1iYYpTJ_TFZx6RhRJOw-_nVQhhivtOY0zFWg8E_AgM=.7ade1453-9e17-488d-84a0-449415ee21de@github.com> Message-ID: <6milxFoSM5GFXV6L_f9nRUJG9Nqmt-mm0xMzp_-_2As=.cd03a3e2-3263-48ee-9cdf-4f5d14e4c735@github.com> On Thu, 9 Oct 2025 16:49:17 GMT, Andrew Haley wrote: >> SendaoYan has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision: >> >> - Merge branch 'openjdk:master' into jbs8353657 >> - Use NIX_DBGINFO_EXT instead of DEBUGINFO_FILE_EXT >> - 8353657: [8u] Test tools/launcher/VersionCheck.java fails with debug build > > Marked as reviewed by aph (Lead). Thanks for the reviews @theRealAph ------------- PR Comment: https://git.openjdk.org/jdk8u-dev/pull/685#issuecomment-3388020988 From syan at openjdk.org Mon Oct 13 09:16:50 2025 From: syan at openjdk.org (SendaoYan) Date: Mon, 13 Oct 2025 09:16:50 GMT Subject: [jdk8u-dev] RFR: 8132786: java/security/cert/CertPathValidator/OCSP/AIACheck.java fails intermittently Message-ID: Hi all, This is clean backport to fix the test bug which will cause test intermittently fails. Change has been verified locally on linux-x64, test-fix only, no risk. ------------- Commit messages: - Backport 79e58cc0e57717bb00b22a4716b7eb6f903441ef Changes: https://git.openjdk.org/jdk8u-dev/pull/704/files Webrev: https://webrevs.openjdk.org/?repo=jdk8u-dev&pr=704&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8132786 Stats: 5 lines in 1 file changed: 2 ins; 0 del; 3 mod Patch: https://git.openjdk.org/jdk8u-dev/pull/704.diff Fetch: git fetch https://git.openjdk.org/jdk8u-dev.git pull/704/head:pull/704 PR: https://git.openjdk.org/jdk8u-dev/pull/704 From syan at openjdk.org Thu Oct 16 03:12:06 2025 From: syan at openjdk.org (SendaoYan) Date: Thu, 16 Oct 2025 03:12:06 GMT Subject: [jdk8u-dev] RFR: 8277159: Fix java/nio/file/FileStore/Basic.java test by ignoring /run/user/* mount points Message-ID: Hi all, This pull request contains a backport of commit [b6876649](https://github.com/openjdk/jdk/commit/b6876649a82bed508d817ccbde1600d00937e4b2) from the [openjdk/jdk](https://git.openjdk.org/jdk) repository. The commit being backported was authored by Alex Kasko on 17 Nov 2021 and was reviewed by Brian Burkhalter and Aleksey Shipilev. Thanks! ------------- Commit messages: - Backport b6876649a82bed508d817ccbde1600d00937e4b2 Changes: https://git.openjdk.org/jdk8u-dev/pull/705/files Webrev: https://webrevs.openjdk.org/?repo=jdk8u-dev&pr=705&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8277159 Stats: 10 lines in 1 file changed: 10 ins; 0 del; 0 mod Patch: https://git.openjdk.org/jdk8u-dev/pull/705.diff Fetch: git fetch https://git.openjdk.org/jdk8u-dev.git pull/705/head:pull/705 PR: https://git.openjdk.org/jdk8u-dev/pull/705 From syan at openjdk.org Thu Oct 16 03:44:51 2025 From: syan at openjdk.org (SendaoYan) Date: Thu, 16 Oct 2025 03:44:51 GMT Subject: [jdk8u-dev] RFR: 8277159: Fix java/nio/file/FileStore/Basic.java test by ignoring /run/user/* mount points [v2] In-Reply-To: References: Message-ID: <7GqTatNHkk38uGQrw_pMN7CTUc3nMJVtzlMAy56B3R8=.a5040290-88b7-4ac0-9cbc-bff9bc87dbb9@github.com> > Hi all, > > This pull request contains a backport of commit [b6876649](https://github.com/openjdk/jdk/commit/b6876649a82bed508d817ccbde1600d00937e4b2) from the [openjdk/jdk](https://git.openjdk.org/jdk) repository. > > The commit being backported was authored by Alex Kasko on 17 Nov 2021 and was reviewed by Brian Burkhalter and Aleksey Shipilev. > > Thanks! SendaoYan has updated the pull request incrementally with one additional commit since the last revision: Add "@libiray /test/lib" and "import jdk.test.lib.Platform;" ------------- Changes: - all: https://git.openjdk.org/jdk8u-dev/pull/705/files - new: https://git.openjdk.org/jdk8u-dev/pull/705/files/d4ef85fb..2f4d2fa0 Webrevs: - full: https://webrevs.openjdk.org/?repo=jdk8u-dev&pr=705&range=01 - incr: https://webrevs.openjdk.org/?repo=jdk8u-dev&pr=705&range=00-01 Stats: 2 lines in 1 file changed: 1 ins; 0 del; 1 mod Patch: https://git.openjdk.org/jdk8u-dev/pull/705.diff Fetch: git fetch https://git.openjdk.org/jdk8u-dev.git pull/705/head:pull/705 PR: https://git.openjdk.org/jdk8u-dev/pull/705 From jvanek at openjdk.org Fri Oct 17 06:14:16 2025 From: jvanek at openjdk.org (=?UTF-8?B?SmnFmcOt?= =?UTF-8?B?IA==?= =?UTF-8?B?VmFuxJtr?=) Date: Fri, 17 Oct 2025 06:14:16 GMT Subject: [jdk8u-dev] RFR: 8360869: jcstress is able to crash jdk8 on aarch64 with jfr on [v5] In-Reply-To: <196Y7TKF9GNgwVRcKposFa5qZ_kfOvdgDAEgckqyRPg=.dba882cd-f17d-44e1-9db0-fd2c8cbfb5a4@github.com> References: <196Y7TKF9GNgwVRcKposFa5qZ_kfOvdgDAEgckqyRPg=.dba882cd-f17d-44e1-9db0-fd2c8cbfb5a4@github.com> Message-ID: On Thu, 18 Sep 2025 08:00:59 GMT, Ji?? Van?k wrote: >> We are seeing rare crashes in jcstress with jdk8 on aarch64 with jfron. Those crashes are real, however we were not able to reproduce with builds on gcc 5 and up. The real culprint was not found. but gcc version on aarch64 should be checked. Ideal version seems 7, but I'm not that bold. >> >> I think this change must be accompanied by regenerating `generated-configure` but am not sure with process on it. > > Ji?? Van?k has refreshed the contents of this pull request, and previous commits have been removed. The incremental views will show differences compared to the previous content of the PR. The pull request contains one new commit since the last revision: > > regenerated generated-configure by self built autoconf 2.69 > > Skipping about 50 hunks like: > @@ -50158,7 +50167,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu > /* end confdefs.h. */ > > int > -main (void) > +main () > { > return 0; > ; still waiting for resolution on inclusion ------------- PR Comment: https://git.openjdk.org/jdk8u-dev/pull/697#issuecomment-3414021610 From serb at openjdk.org Fri Oct 17 22:29:20 2025 From: serb at openjdk.org (Sergey Bylokhov) Date: Fri, 17 Oct 2025 22:29:20 GMT Subject: [jdk8u-dev] RFR: 8160974: [TESTBUG] Mark more headful tests with @key headful. [v6] In-Reply-To: References: Message-ID: On Wed, 5 Jun 2024 10:15:15 GMT, Kazuhisa Takakuri wrote: >> This is a backport of JDK-8160974: [TESTBUG] Mark more headful tests with @key headful. >> >> This patch has already been applied to OracleJDK8. >> As noted in the Bug Issue comments, some tests do not exist in 8u. > > Kazuhisa Takakuri has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains six commits: > > - Merge branch 'master' into 8160974 > - Backport e52b963d0cdc49e2048757eae2e4b10bb279f296 > - Backport e52b963d0cdc49e2048757eae2e4b10bb279f296 > - Merge branch 'master' into 8160974 > - Merge branch 'master' into 8160974 > - Backport e52b963d0cdc49e2048757eae2e4b10bb279f296 Please merge the master branch, as the current branch is quite outdated. ------------- PR Comment: https://git.openjdk.org/jdk8u-dev/pull/383#issuecomment-3417419358