Re: RFR: 8275145: file.encoding system property has an incorrect value on Windows

2021-10-14 Thread Naoto Sato
On Thu, 14 Oct 2021 15:50:28 GMT, Naoto Sato wrote: > Fixing a regression in which `file.encoding` was initialized by > `sprops->encoding` instead of `sprops->sun_jnu_encoding` on non macOS > platforms. tier1-3 tests passed on all platforms. Filed a CSR: https://bugs.openjdk.java.net/browse/JD

Re: RFR: 8275145: file.encoding system property has an incorrect value on Windows

2021-10-14 Thread Joe Darcy
On Thu, 14 Oct 2021 15:50:28 GMT, Naoto Sato wrote: > Fixing a regression in which `file.encoding` was initialized by > `sprops->encoding` instead of `sprops->sun_jnu_encoding` on non macOS > platforms. tier1-3 tests passed on all platforms. Please file a CSR for the change in behavior. -

Re: RFR: 8275145: file.encoding system property has an incorrect value on Windows

2021-10-14 Thread Alan Bateman
On Thu, 14 Oct 2021 15:50:28 GMT, Naoto Sato wrote: > Fixing a regression in which `file.encoding` was initialized by > `sprops->encoding` instead of `sprops->sun_jnu_encoding` on non macOS > platforms. tier1-3 tests passed on all platforms. Marked as reviewed by alanb (Reviewer). ---

Re: RFR: 8275145: file.encoding system property has an incorrect value on Windows

2021-10-14 Thread Roger Riggs
On Thu, 14 Oct 2021 15:50:28 GMT, Naoto Sato wrote: > Fixing a regression in which `file.encoding` was initialized by > `sprops->encoding` instead of `sprops->sun_jnu_encoding` on non macOS > platforms. tier1-3 tests passed on all platforms. Marked as reviewed by rriggs (Reviewer). --

Re: RFR: 8275145: file.encoding system property has an incorrect value on Windows

2021-10-14 Thread Mandy Chung
On Thu, 14 Oct 2021 15:50:28 GMT, Naoto Sato wrote: > Fixing a regression in which `file.encoding` was initialized by > `sprops->encoding` instead of `sprops->sun_jnu_encoding` on non macOS > platforms. tier1-3 tests passed on all platforms. Marked as reviewed by mchung (Reviewer). --

Re: RFR: 8275145: file.encoding system property has an incorrect value on Windows

2021-10-14 Thread Iris Clark
On Thu, 14 Oct 2021 15:50:28 GMT, Naoto Sato wrote: > Fixing a regression in which `file.encoding` was initialized by > `sprops->encoding` instead of `sprops->sun_jnu_encoding` on non macOS > platforms. tier1-3 tests passed on all platforms. Marked as reviewed by iris (Reviewer).

RFR: 8275145: file.encoding system property has an incorrect value on Windows

2021-10-14 Thread Naoto Sato
Fixing a regression in which `file.encoding` was initialized by `sprops->encoding` instead of `sprops->sun_jnu_encoding` on non macOS platforms. tier1-3 tests passed on all platforms. - Commit messages: - 8275145: file.encoding system property has an incorrect value on Windows Cha