-
Notifications
You must be signed in to change notification settings - Fork 767
Fix transformIndexOfKnownString to handle 8bit characters properly #19044
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
Fix transformIndexOfKnownString to handle 8bit characters properly #19044
Conversation
Jenkins test sanity all jdk17 |
Link to x86 personal build: https://hyc-runtimes-jenkins.swg-devops.com/view/OpenJ9%20-%20Personal/job/Pipeline-Build-Test-Personal/20963/ |
The test failure on Windows is caused by Issue #18998. |
@hzongaro This is a fix for a blocker issue. Could you review, please? |
4f45a71
to
0fd0380
Compare
Avoid sign extension when assigning an 8bit value to an int32_t variable. Signed-off-by: Akira Saitoh <[email protected]>
0fd0380
to
11b707f
Compare
Jenkins test sanity all jdk17 |
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. Thanks!
Failure in JDK 17 zLinux testing appears to be due to known issue #18994 Failure in JDK 17 Windows testing is due to known issue #18998 |
Test failures were due to known issues, unrelated to this change. The fix itself is very safe. Merging. |
Pls create a PR for the 0.44 branch. |
Opened #19056 for double delivery. |
Avoid sign extension when assigning an 8bit value to an int32_t variable.
Issue: #18974