1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
Running regression tests
------------------------
Unpack openjdk-N-source package and install the openjdk-N-testsupport
package.
Change directory to the source package and execute:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jtreg-autopkgtest.sh <output-directory> <jtreg options>
to run regression tests.
The script does not set up a GUI environment. Please use
./debian/tests/jdk-autopkgtest.sh for JDK tests that require a GUI.
Some examples:
- Run specific tests:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jtreg-autopkgtest.sh output-dir \
-dir:test/hotspot/jtreg/ \
sanity/BasicVMTest.java \
runtime/6294277/SourceDebugExtension.java
- Run a group of tests (see TEST.groups for definitions):
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jtreg-autopkgtest.sh output-dir \
-dir:test/hotspot/jtreg \
:tier1
- Run all tests in the subdirectory:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jtreg-autopkgtest.sh output-dir \
test/hotspot/jtreg/runtime
or
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jtreg-autopkgtest.sh output-dir \
-dir:test/hotspot/jtreg/ \
runtime
See the jtreg manual page for the overview of jtreg options.
More information is available in OpenJDK documentation[1] and OpenJDK
developer guide[2].
Running hotspot regression tests
--------------------------------
Change directory to the source package and execute:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/hotspot-autopkgtest.sh <jtreg options>
Some examples:
- Run specific tests:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/hotspot-autopkgtest.sh \
sanity/BasicVMTest.java \
runtime/6294277/SourceDebugExtension.java
- Run a test group:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/hotspot-autopkgtest.sh \
:tier2
Running the script without any options executes tier1 hotspot tests.
Running jdk regression tests
----------------------------
Change directory to the source package and execute:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jdk-autopkgtest.sh <jtreg options>
Some examples:
- Run specific tests:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jdk-autopkgtest.sh \
java/lang/Long/GetLong.java \
java/lang/Math/TanTests.java
- Run a test group:
AUTOPKGTEST_TMP=. AUTOPKGTEST_ARTIFACTS=. \
./debian/tests/jdk-autopkgtest.sh \
:tier2
Running the script without any options executes tier1 jdk tests.
[1] https://openjdk.org/groups/build/doc/testing.html
[2] https://openjdk.org/guide/#jtreg
|