-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8299439: java/text/Format/NumberFormat/CurrencyFormat.java fails for hr_HR #228
Conversation
👋 Welcome back andrew! A progress list of the required criteria for merging this PR into |
This backport pull request has now been updated with issues from the original commit. |
Failures appear to be down to download errors, nothing to do with the patch. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
@gnu-andrew This change now passes all automated pre-integration checks. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been no new commits pushed to the ➡️ To integrate this PR with the above commit message to the |
I see /integrate |
Test failure is a timeout on |
Going to push as commit a5c3ebe.
Your commit was automatically rebased without conflicts. |
@gnu-andrew Pushed as commit a5c3ebe. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This is a mostly clean backport from 11u. The only difference is the
ProblemList.txt
copyright header change didn't apply, so I just omitted this. It seems odd to include such a change when there are no changes to the content of the file. Maybe this makes sense for 11+ where the file is more in sync with trunk, but it will actually create problems in 8u backporting earlier fixes.There are actually two fixes here, which may not be clear from the original bug:
CurrencyFormat.java
test still expectshr_HR
to returnKn
and hasn't been updated following Croatia's move to the Euro.EUR
to the Euro symbol. The same change toCurrencyNames_hr_HR.properties
is required as was made toCurrencyNames_lt_LT.properties
for Lithuania's move to the Euro in 2014The above was verified by running the unpatched test against an unpatched JDK (
"Wrong currency symbol for locale hr_HR, expected: Kn, got: EUR"
), the patched test against an unpatched JDK ("Wrong currency symbol for locale hr_HR, expected: \u20ac, got: EUR"
) and the patched test against a patched JDK (both\u20AC
). Only the last of these passes.The patch also removes the long redundant time dependencies for Lithuania and Latvia.
Progress
Issues
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk8u-dev pull/228/head:pull/228
$ git checkout pull/228
Update a local copy of the PR:
$ git checkout pull/228
$ git pull https://git.openjdk.org/jdk8u-dev pull/228/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 228
View PR using the GUI difftool:
$ git pr show -t 228
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk8u-dev/pull/228.diff