mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-28 03:58:21 +00:00
8375683: Add notes for sctp tests
Reviewed-by: erikj, vyazici
This commit is contained in:
parent
a40dbce495
commit
932556026d
@ -72,6 +72,7 @@ id="toc-notes-for-specific-tests">Notes for Specific Tests</a>
|
|||||||
<li><a href="#non-us-locale" id="toc-non-us-locale">Non-US
|
<li><a href="#non-us-locale" id="toc-non-us-locale">Non-US
|
||||||
locale</a></li>
|
locale</a></li>
|
||||||
<li><a href="#pkcs11-tests" id="toc-pkcs11-tests">PKCS11 Tests</a></li>
|
<li><a href="#pkcs11-tests" id="toc-pkcs11-tests">PKCS11 Tests</a></li>
|
||||||
|
<li><a href="#sctp-tests" id="toc-sctp-tests">SCTP Tests</a></li>
|
||||||
<li><a href="#testing-ahead-of-time-optimizations"
|
<li><a href="#testing-ahead-of-time-optimizations"
|
||||||
id="toc-testing-ahead-of-time-optimizations">Testing Ahead-of-time
|
id="toc-testing-ahead-of-time-optimizations">Testing Ahead-of-time
|
||||||
Optimizations</a></li>
|
Optimizations</a></li>
|
||||||
@ -621,6 +622,21 @@ element of the appropriate <code>@Artifact</code> class. (See
|
|||||||
JTREG="JAVA_OPTIONS=-Djdk.test.lib.artifacts.nsslib-linux_aarch64=/path/to/NSS-libs"</code></pre>
|
JTREG="JAVA_OPTIONS=-Djdk.test.lib.artifacts.nsslib-linux_aarch64=/path/to/NSS-libs"</code></pre>
|
||||||
<p>For more notes about the PKCS11 tests, please refer to
|
<p>For more notes about the PKCS11 tests, please refer to
|
||||||
test/jdk/sun/security/pkcs11/README.</p>
|
test/jdk/sun/security/pkcs11/README.</p>
|
||||||
|
<h3 id="sctp-tests">SCTP Tests</h3>
|
||||||
|
<p>The SCTP tests require the SCTP runtime library, which is often not
|
||||||
|
installed by default in popular Linux distributions. Without this
|
||||||
|
library, the SCTP tests will be skipped. If you want to enable the SCTP
|
||||||
|
tests, you should install the SCTP library before running the tests.</p>
|
||||||
|
<p>For distributions using the .deb packaging format and the apt tool
|
||||||
|
(such as Debian, Ubuntu, etc.), try this:</p>
|
||||||
|
<pre><code>sudo apt install libsctp1
|
||||||
|
sudo modprobe sctp
|
||||||
|
lsmod | grep sctp</code></pre>
|
||||||
|
<p>For distributions using the .rpm packaging format and the dnf tool
|
||||||
|
(such as Fedora, Red Hat, etc.), try this:</p>
|
||||||
|
<pre><code>sudo dnf install -y lksctp-tools
|
||||||
|
sudo modprobe sctp
|
||||||
|
lsmod | grep sctp</code></pre>
|
||||||
<h3 id="testing-ahead-of-time-optimizations">Testing Ahead-of-time
|
<h3 id="testing-ahead-of-time-optimizations">Testing Ahead-of-time
|
||||||
Optimizations</h3>
|
Optimizations</h3>
|
||||||
<p>One way to improve test coverage of ahead-of-time (AOT) optimizations
|
<p>One way to improve test coverage of ahead-of-time (AOT) optimizations
|
||||||
|
|||||||
@ -640,6 +640,32 @@ $ make test TEST="jtreg:sun/security/pkcs11/Secmod/AddTrustedCert.java" \
|
|||||||
For more notes about the PKCS11 tests, please refer to
|
For more notes about the PKCS11 tests, please refer to
|
||||||
test/jdk/sun/security/pkcs11/README.
|
test/jdk/sun/security/pkcs11/README.
|
||||||
|
|
||||||
|
|
||||||
|
### SCTP Tests
|
||||||
|
|
||||||
|
The SCTP tests require the SCTP runtime library, which is often not installed
|
||||||
|
by default in popular Linux distributions. Without this library, the SCTP tests
|
||||||
|
will be skipped. If you want to enable the SCTP tests, you should install the
|
||||||
|
SCTP library before running the tests.
|
||||||
|
|
||||||
|
For distributions using the .deb packaging format and the apt tool
|
||||||
|
(such as Debian, Ubuntu, etc.), try this:
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo apt install libsctp1
|
||||||
|
sudo modprobe sctp
|
||||||
|
lsmod | grep sctp
|
||||||
|
```
|
||||||
|
|
||||||
|
For distributions using the .rpm packaging format and the dnf tool
|
||||||
|
(such as Fedora, Red Hat, etc.), try this:
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo dnf install -y lksctp-tools
|
||||||
|
sudo modprobe sctp
|
||||||
|
lsmod | grep sctp
|
||||||
|
```
|
||||||
|
|
||||||
### Testing Ahead-of-time Optimizations
|
### Testing Ahead-of-time Optimizations
|
||||||
|
|
||||||
One way to improve test coverage of ahead-of-time (AOT) optimizations in
|
One way to improve test coverage of ahead-of-time (AOT) optimizations in
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user