8371503: RETAIN_IMAGE_AFTER_TEST do not work for some tests#28208
8371503: RETAIN_IMAGE_AFTER_TEST do not work for some tests#28208sendaoYan wants to merge 3 commits intoopenjdk:masterfrom
Conversation
|
👋 Welcome back syan! A progress list of the required criteria for merging this PR into |
|
@sendaoYan 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 1 new commit pushed to the Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
|
@sendaoYan The following labels will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
|
Looking for 2rd reviewer, since this PR touch files in hotspot directory. |
|
@sendaoYan This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply issue a |
|
Looking for 2rd reviewer, since this PR touch files in hotspot directory? |
dholmes-ora
left a comment
There was a problem hiding this comment.
I'm unclear what you mean by some of the tests not working - are you saying those tests did not check the value of RETAIN_IMAGE_AFTER_TEST? Or that they never had it passed in - in which case why not? Where does it come from.
| if(!DockerTestUtils.RETAIN_IMAGE_AFTER_TEST) { | ||
| execute(Container.ENGINE_COMMAND, "rmi", "--force", imageNameAndTag); | ||
| } |
There was a problem hiding this comment.
Pre-existing but indent is too big
There was a problem hiding this comment.
You also need to document the fact the property is used to make this a no-op.
There was a problem hiding this comment.
Pre-existing but indent is too big
Fixed.
Some tests did not check the value of the RETAIN_IMAGE_AFTER_TEST variable, causing the docker image to be deleted at the end of the test run even if the -Djdk.test.docker.retain.image=true option was used when running those tests. |
dholmes-ora
left a comment
There was a problem hiding this comment.
Thanks - now it makes sense to me.
|
Thanks for the reviews @lmesnik @dholmes-ora /integrate |
|
Going to push as commit 34f2413.
Your commit was automatically rebased without conflicts. |
|
@sendaoYan Pushed as commit 34f2413. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Hi all,
The DockerTestUtils.RETAIN_IMAGE_AFTER_TEST variable which read the property from "jdk.test.docker.retain.image" do not work for some of the docker tests, such as jdk/internal/platform/docker/TestDockerCpuMetrics.java, only works for some of the docker tests, such as jdk/internal/platform/docker/TestPidsLimit.java.
This PR read the DockerTestUtils.RETAIN_IMAGE_AFTER_TEST inside function removeDockerImage instead of before all the fucntion removeDockerImage. This will make all the docker tests receive the property jdk.test.docker.retain.image.
Change has been verified locally on linux-x64 by run the all touched tests.
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/28208/head:pull/28208$ git checkout pull/28208Update a local copy of the PR:
$ git checkout pull/28208$ git pull https://git.openjdk.org/jdk.git pull/28208/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 28208View PR using the GUI difftool:
$ git pr show -t 28208Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/28208.diff
Using Webrev
Link to Webrev Comment