Skip to content

Commit

Permalink
Adding SKIP_JCK_GIT_UPDATE to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Nov 11, 2024
1 parent 994b66c commit 3b4abd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions jck/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

3. Export `JCK_ROOT=/jck/<test_material_folder>` as an environment variable or pass it in when run as a make command. For example `export JCK_ROOT=/jck/jck8d`.
* Optional. The default value is `<openjdk-test>/../../../jck_root/JCK$(JDK_VERSION)-unzipped`.
* if you export `SKIP_JCK_GIT_UPDATE=true`, then the `JCK_GIT_REPO` is not used at all, and `JCK_ROOT` is used directly, without needing to be a repo.

4. Export `TEST_JDK_HOME=<your_JDK_root>` as an environment variable.

Expand Down
2 changes: 1 addition & 1 deletion jck/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
<if>
<isset property="env.SKIP_JCK_GIT_UPDATE" />
<then>
<echo message="env.SKIP_JCK_GIT_UPDATE set, not enforcing existence of env.JCK_GIT_REPO" />
<echo message="=== env.SKIP_JCK_GIT_UPDATE set, not enforcing existence of env.JCK_GIT_REPO ===" />
</then>
<else>
<fail message="env.JCK_GIT_REPO: ${env.JCK_GIT_REPO} was not correctly set for running JCK tests. If you do not want to compile JCK tests,
Expand Down

0 comments on commit 3b4abd2

Please sign in to comment.