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
8214733: runtime/8176717/TestInheritFD.java timed out #7179
Conversation
|
Webrevs
|
@hseigel 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 3 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the
|
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.
Nice.
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.
Thumbs up. Minor request for a comment.
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.
Thanks for adding the comment.
Since this failure mode reproduces on my Ubuntu 20.04 machine, I'll
keep my eyes open after you integrate.
Thanks Leonid, Coleen, and Dan for the reviews! /integrate |
Going to push as commit 4501ddd.
Your commit was automatically rebased without conflicts. |
Please review this small change to fix TestInheritFD.java. The logs in the JBS bug indicate that the test probably timed out waiting for the lsof command to finish. This fix adds the -a and +d
options to the lsof command to limit its scope. The +d option tells lsof to only look in the specified directory for open files. The -a option combines the -p and the +d option. (An alternative fix would be to use the -b option.)The fix was tested by running the test 1000 times on Linux x64 and Mac OS aarch64. The fix was also sanity tested on Linux aarch64, Mac OS x64, and windows.
Thanks, Harold
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/7179/head:pull/7179
$ git checkout pull/7179
Update a local copy of the PR:
$ git checkout pull/7179
$ git pull https://git.openjdk.java.net/jdk pull/7179/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 7179
View PR using the GUI difftool:
$ git pr show -t 7179
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/7179.diff