-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
8327261: Parsing test for Double/Float succeeds w/o testing all bad cases #18113
Conversation
👋 Welcome back naoto! A progress list of the required criteria for merging this PR into |
Webrevs
|
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 fine; thanks for sending out the fix.
@naotoj This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. 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 15 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
@@ -557,10 +557,8 @@ private static void rudimentaryTest() { | |||
private static void testParsing(String [] input, | |||
boolean exceptionalInput) { | |||
for(int i = 0; i < input.length; i++) { |
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.
As you're updating the file, I think changing the loop to an enhanced for loop would be an improvement.
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.
Only a trivial suggestion.
try { | ||
d = Double.parseDouble(input[i]); | ||
Double.parseDouble(input[i]); | ||
check(input[i]); | ||
} | ||
catch (NumberFormatException e) { |
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.
The catch
clause doesn't need to stay in a new line.
try { | ||
d = Float.parseFloat(input[i]); | ||
Float.parseFloat(input[i]); | ||
check(input[i]); | ||
} | ||
catch (NumberFormatException e) { |
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.
The catch
clause doesn't need to stay in a new line.
Thanks for the reviews. Updated as suggested |
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.
+1
Thanks for the reviews! |
Going to push as commit 9f70940.
Your commit was automatically rebased without conflicts. |
Fixing test cases. For bad test cases, only the first case was run, and the rest were ignored.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/18113/head:pull/18113
$ git checkout pull/18113
Update a local copy of the PR:
$ git checkout pull/18113
$ git pull https://git.openjdk.org/jdk.git pull/18113/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 18113
View PR using the GUI difftool:
$ git pr show -t 18113
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/18113.diff
Webrev
Link to Webrev Comment