-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
JDK-8316894: make test TEST="jtreg:test/jdk/..." fails on AIX #15941
Conversation
👋 Welcome back mbaesken! 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 good. Have you verified that this works with nawk as well as old gawk versions?
@MBaesken 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 26 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 |
On AIX I have both nawk and gawk on the machine and both work with the change. |
As was pointed out in the bug, this changes the meaning of the expression to always round down rather than rounding to nearest integer, which was my intention when I originally added this logic. For higher cpu counts, this doesn't matter much, but for smaller systems, it can make a big difference if we run with 1 or 2 jobs. To work around this, perhaps add |
Hi Erik, sure we can do so , I adjusted the change. |
Hi Magnus and Erik, thanks for the reviews ! /integrate |
Going to push as commit 29348b3.
Your commit was automatically rebased without conflicts. |
Running jtreg tests with make test, for example
make test TEST="jtreg:test/jdk/java/util/prefs" fails currently on AIX without setting the number of JOBS manually.
We get this error message:
Error: Bad use of -concurrency
Log of cmdargs shows :
-vmoption:-Xmx768m
-agentvm
-verbose:fail,error,summary
-retain:fail,error
-concurrency:7.000000
....
So currently a float is used for the concurrency value, seems this is not supported.
Reason is an old gawk printing float values instead of the needed ints, so better print ints in the makefile by using %d .
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/15941/head:pull/15941
$ git checkout pull/15941
Update a local copy of the PR:
$ git checkout pull/15941
$ git pull https://git.openjdk.org/jdk.git pull/15941/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 15941
View PR using the GUI difftool:
$ git pr show -t 15941
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/15941.diff
Webrev
Link to Webrev Comment