Hi, In the 'Running Tests' section of building.html file [1] , the download link for jtreg binary provided by the Adoption Group is broken [2].
It seems that there is a new link for the jtreg binary [3]. The broken link in building.html file needs to be updated. Same issue exists with building.md file. Patch is attached. Can someone review and sponsor it? [1] : https://hg.openjdk.java.net/jdk/jdk/raw-file/tip/doc/building.html#running-tests [2] : https://adopt-openjdk.ci.cloudbees.com/job/jtreg/lastSuccessfulBuild/artifact [3] : https://ci.adoptopenjdk.net/view/Dependencies/job/jtreg/lastSuccessfulBuild/artifact/ -- Anirvan
diff a/doc/building.html b/doc/building.html --- a/doc/building.html +++ b/doc/building.html @@ -576,11 +576,11 @@ <li><code>JDK_FILTER</code></li> <li><code>SPEC_FILTER</code></li> </ul> <h2 id="running-tests">Running Tests</h2> <p>Most of the JDK tests are using the <a href="http://openjdk.java.net/jtreg">JTReg</a> test framework. Make sure that your configuration knows where to find your installation of JTReg. If this is not picked up automatically, use the <code>--with-jtreg=<path to jtreg home></code> option to point to the JTReg framework. Note that this option should point to the JTReg home, i.e. the top directory, containing <code>lib/jtreg.jar</code> etc.</p> -<p>The <a href="https://wiki.openjdk.java.net/display/Adoption">Adoption Group</a> provides recent builds of jtreg <a href="https://adopt-openjdk.ci.cloudbees.com/job/jtreg/lastSuccessfulBuild/artifact">here</a>. Download the latest <code>.tar.gz</code> file, unpack it, and point <code>--with-jtreg</code> to the <code>jtreg</code> directory that you just unpacked.</p> +<p>The <a href="https://wiki.openjdk.java.net/display/Adoption">Adoption Group</a> provides recent builds of jtreg <a href="https://ci.adoptopenjdk.net/view/Dependencies/job/jtreg/lastSuccessfulBuild/artifact">here</a>. Download the latest <code>.tar.gz</code> file, unpack it, and point <code>--with-jtreg</code> to the <code>jtreg</code> directory that you just unpacked.</p> <p>To execute the most basic tests (tier 1), use:</p> <pre><code>make run-test-tier1</code></pre> <p>For more details on how to run tests, please see the <a href="testing.html">Testing the JDK</a> document.</p> <h2 id="cross-compiling">Cross-compiling</h2> <p>Cross-compiling means using one platform (the <em>build</em> platform) to generate output that can ran on another platform (the <em>target</em> platform).</p> diff a/doc/building.md b/doc/building.md --- a/doc/building.md +++ b/doc/building.md @@ -889,11 +889,11 @@ Note that this option should point to the JTReg home, i.e. the top directory, containing `lib/jtreg.jar` etc. The [Adoption Group](https://wiki.openjdk.java.net/display/Adoption) provides recent builds of jtreg [here]( -https://adopt-openjdk.ci.cloudbees.com/job/jtreg/lastSuccessfulBuild/artifact). +https://ci.adoptopenjdk.net/view/Dependencies/job/jtreg/lastSuccessfulBuild/artifact). Download the latest `.tar.gz` file, unpack it, and point `--with-jtreg` to the `jtreg` directory that you just unpacked. To execute the most basic tests (tier 1), use: ```