author | aghaisas |
Wed, 25 Oct 2017 16:34:11 +0530 | |
changeset 47505 | 277fda692b28 |
parent 47216 | 71c04702a3d5 |
child 48058 | c5eefa465e37 |
permissions | -rw-r--r-- |
44511 | 1 |
% Testing OpenJDK |
2 |
||
3 |
## Using the run-test framework |
|
4 |
||
5 |
This new way of running tests is developer-centric. It assumes that you have |
|
6 |
built a jdk locally and want to test it. Running common test targets is simple, |
|
7 |
and more complex ad-hoc combination of tests is possible. The user interface is |
|
8 |
forgiving, and clearly report errors it cannot resolve. |
|
9 |
||
45266
29347d0c7122
8180651: Make target to run tests on exploded image
erikj
parents:
44983
diff
changeset
|
10 |
The main target "run-test" uses the jdk-image as the tested product. There is |
29347d0c7122
8180651: Make target to run tests on exploded image
erikj
parents:
44983
diff
changeset
|
11 |
also an alternate target "exploded-run-test" that uses the exploded image |
29347d0c7122
8180651: Make target to run tests on exploded image
erikj
parents:
44983
diff
changeset
|
12 |
instead. Not all tests will run successfully on the exploded image, but using |
29347d0c7122
8180651: Make target to run tests on exploded image
erikj
parents:
44983
diff
changeset
|
13 |
this target can greatly improve rebuild times for certain workflows. |
29347d0c7122
8180651: Make target to run tests on exploded image
erikj
parents:
44983
diff
changeset
|
14 |
|
44511 | 15 |
Some example command-lines: |
16 |
||
17 |
$ make run-test-tier1 |
|
18 |
$ make run-test-jdk_lang JTREG="JOBS=8" |
|
19 |
$ make run-test TEST=jdk_lang |
|
20 |
$ make run-test-only TEST="gtest:LogTagSet gtest:LogTagSetDescriptions" GTEST="REPEAT=-1" |
|
21 |
$ make run-test TEST="hotspot/test:hotspot_gc" JTREG="JOBS=1;TIMEOUT=8;VM_OTIONS=-XshowSettings -Xlog:gc+ref=debug" |
|
22 |
$ make run-test TEST="jtreg:hotspot/test:hotspot_gc hotspot/test/native_sanity/JniVersion.java" |
|
45266
29347d0c7122
8180651: Make target to run tests on exploded image
erikj
parents:
44983
diff
changeset
|
23 |
$ make exploded-run-test TEST=hotspot_tier1 |
44511 | 24 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
25 |
### Configuration |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
26 |
|
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
27 |
To be able to run JTReg tests, `configure` needs to know where to find the |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
28 |
JTReg test framework. If it is not picked up automatically by configure, use |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
29 |
the `--with-jtreg=<path to jtreg home>` option to point to the JTReg framework. |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
30 |
Note that this option should point to the JTReg home, i.e. the top directory, |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
31 |
containing `lib/jtreg.jar` etc. (An alternative is to set the `JT_HOME` |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
32 |
environment variable to point to the JTReg home before running `configure`.) |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
33 |
|
44511 | 34 |
## Test selection |
35 |
||
36 |
All functionality is available using the run-test make target. In this use |
|
37 |
case, the test or tests to be executed is controlled using the `TEST` variable. |
|
38 |
To speed up subsequent test runs with no source code changes, run-test-only can |
|
39 |
be used instead, which do not depend on the source and test image build. |
|
40 |
||
41 |
For some common top-level tests, direct make targets have been generated. This |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
42 |
includes all JTReg test groups, the hotspot gtest, and custom tests (if |
44511 | 43 |
present). This means that `make run-test-tier1` is equivalent to `make run-test |
44 |
TEST="tier1"`, but the latter is more tab-completion friendly. For more complex |
|
45 |
test runs, the `run-test TEST="x"` solution needs to be used. |
|
46 |
||
47 |
The test specifications given in `TEST` is parsed into fully qualified test |
|
48 |
descriptors, which clearly and unambigously show which tests will be run. As an |
|
49 |
example, `:tier1` will expand to `jtreg:jdk/test:tier1 |
|
50 |
jtreg:langtools/test:tier1 jtreg:nashorn/test:tier1 jtreg:jaxp/test:tier1`. You |
|
51 |
can always submit a list of fully qualified test descriptors in the `TEST` |
|
52 |
variable if you want to shortcut the parser. |
|
53 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
54 |
### JTReg |
44511 | 55 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
56 |
JTReg test groups can be specified either without a test root, e.g. `:tier1` |
44511 | 57 |
(or `tier1`, the initial colon is optional), or with, e.g. |
58 |
`hotspot/test:tier1`, `jdk/test:jdk_util`. |
|
59 |
||
60 |
When specified without a test root, all matching groups from all tests roots |
|
61 |
will be added. Otherwise, only the group from the specified test root will be |
|
62 |
added. |
|
63 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
64 |
Individual JTReg tests or directories containing JTReg tests can also be |
44511 | 65 |
specified, like `hotspot/test/native_sanity/JniVersion.java` or |
66 |
`hotspot/test/native_sanity`. You can also specify an absolute path, to point |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
67 |
to a JTReg test outside the source tree. |
44511 | 68 |
|
69 |
As long as the test groups or test paths can be uniquely resolved, you do not |
|
70 |
need to enter the `jtreg:` prefix. If this is not possible, or if you want to |
|
71 |
use a fully qualified test descriptor, add `jtreg:`, e.g. |
|
72 |
`jtreg:hotspot/test/native_sanity`. |
|
73 |
||
74 |
### Gtest |
|
75 |
||
76 |
Since the Hotspot Gtest suite is so quick, the default is to run all tests. |
|
77 |
This is specified by just `gtest`, or as a fully qualified test descriptor |
|
78 |
`gtest:all`. |
|
79 |
||
80 |
If you want, you can single out an individual test or a group of tests, for |
|
81 |
instance `gtest:LogDecorations` or `gtest:LogDecorations.level_test_vm`. This |
|
82 |
can be particularly useful if you want to run a shaky test repeatedly. |
|
83 |
||
84 |
## Test results and summary |
|
85 |
||
86 |
At the end of the test run, a summary of all tests run will be presented. This |
|
87 |
will have a consistent look, regardless of what test suites were used. This is |
|
88 |
a sample summary: |
|
89 |
||
90 |
============================== |
|
91 |
Test summary |
|
92 |
============================== |
|
93 |
TEST TOTAL PASS FAIL ERROR |
|
94 |
>> jtreg:jdk/test:tier1 1867 1865 2 0 << |
|
95 |
jtreg:langtools/test:tier1 4711 4711 0 0 |
|
96 |
jtreg:nashorn/test:tier1 133 133 0 0 |
|
97 |
============================== |
|
98 |
TEST FAILURE |
|
99 |
||
100 |
Tests where the number of TOTAL tests does not equal the number of PASSed tests |
|
101 |
will be considered a test failure. These are marked with the `>> ... <<` marker |
|
102 |
for easy identification. |
|
103 |
||
104 |
The classification of non-passed tests differs a bit between test suites. In |
|
105 |
the summary, ERROR is used as a catch-all for tests that neither passed nor are |
|
106 |
classified as failed by the framework. This might indicate test framework |
|
107 |
error, timeout or other problems. |
|
108 |
||
109 |
In case of test failures, `make run-test` will exit with a non-zero exit value. |
|
110 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
111 |
All tests have their result stored in `build/$BUILD/test-results/$TEST_ID`, |
44511 | 112 |
where TEST_ID is a path-safe conversion from the fully qualified test |
113 |
descriptor, e.g. for `jtreg:jdk/test:tier1` the TEST_ID is |
|
114 |
`jtreg_jdk_test_tier1`. This path is also printed in the log at the end of the |
|
115 |
test run. |
|
116 |
||
117 |
Additional work data is stored in `build/$BUILD/test-support/$TEST_ID`. For |
|
118 |
some frameworks, this directory might contain information that is useful in |
|
119 |
determining the cause of a failed test. |
|
120 |
||
121 |
## Test suite control |
|
122 |
||
123 |
It is possible to control various aspects of the test suites using make control |
|
124 |
variables. |
|
125 |
||
126 |
These variables use a keyword=value approach to allow multiple values to be |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
127 |
set. So, for instance, `JTREG="JOBS=1;TIMEOUT=8"` will set the JTReg |
44511 | 128 |
concurrency level to 1 and the timeout factor to 8. This is equivalent to |
129 |
setting `JTREG_JOBS=1 JTREG_TIMEOUT=8`, but using the keyword format means that |
|
130 |
the `JTREG` variable is parsed and verified for correctness, so |
|
131 |
`JTREG="TMIEOUT=8"` would give an error, while `JTREG_TMIEOUT=8` would just |
|
132 |
pass unnoticed. |
|
133 |
||
134 |
To separate multiple keyword=value pairs, use `;` (semicolon). Since the shell |
|
135 |
normally eats `;`, the recommended usage is to write the assignment inside |
|
136 |
qoutes, e.g. `JTREG="...;..."`. This will also make sure spaces are preserved, |
|
137 |
as in `JTREG="VM_OTIONS=-XshowSettings -Xlog:gc+ref=debug"`. |
|
138 |
||
139 |
(Other ways are possible, e.g. using backslash: `JTREG=JOBS=1\;TIMEOUT=8`. |
|
140 |
Also, as a special technique, the string `%20` will be replaced with space for |
|
141 |
certain options, e.g. `JTREG=VM_OTIONS=-XshowSettings%20-Xlog:gc+ref=debug`. |
|
142 |
This can be useful if you have layers of scripts and have trouble getting |
|
143 |
proper quoting of command line arguments through.) |
|
144 |
||
145 |
As far as possible, the names of the keywords have been standardized between |
|
146 |
test suites. |
|
147 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
148 |
### JTReg keywords |
44511 | 149 |
|
150 |
#### JOBS |
|
151 |
The test concurrency (`-concurrency`). |
|
152 |
||
153 |
Defaults to TEST_JOBS (if set by `--with-test-jobs=`), otherwise it defaults to |
|
154 |
JOBS, except for Hotspot, where the default is *number of CPU cores/2*, but |
|
155 |
never more than 12. |
|
156 |
||
157 |
#### TIMEOUT |
|
158 |
The timeout factor (`-timeoutFactor`). |
|
159 |
||
160 |
Defaults to 4. |
|
161 |
||
162 |
#### TEST_MODE |
|
163 |
The test mode (`-agentvm`, `-samevm` or `-othervm`). |
|
164 |
||
165 |
Defaults to `-agentvm`. |
|
166 |
||
167 |
#### ASSERT |
|
168 |
Enable asserts (`-ea -esa`, or none). |
|
169 |
||
170 |
Set to `true` or `false`. If true, adds `-ea -esa`. Defaults to true, except |
|
171 |
for hotspot. |
|
172 |
||
173 |
#### VERBOSE |
|
174 |
The verbosity level (`-verbose`). |
|
175 |
||
176 |
Defaults to `fail,error,summary`. |
|
177 |
||
178 |
#### RETAIN |
|
179 |
What test data to retain (`-retain`). |
|
180 |
||
181 |
Defaults to `fail,error`. |
|
182 |
||
183 |
#### MAX_MEM |
|
184 |
Limit memory consumption (`-Xmx` and `-vmoption:-Xmx`, or none). |
|
185 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
186 |
Limit memory consumption for JTReg test framework and VM under test. Set to 0 |
44511 | 187 |
to disable the limits. |
188 |
||
189 |
Defaults to 512m, except for hotspot, where it defaults to 0 (no limit). |
|
190 |
||
191 |
#### OPTIONS |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
192 |
Additional options to the JTReg test framework. |
44511 | 193 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
194 |
Use `JTREG="OPTIONS=--help all"` to see all available JTReg options. |
44511 | 195 |
|
196 |
#### JAVA_OPTIONS |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
197 |
Additional Java options to JTReg (`-javaoption`). |
44511 | 198 |
|
199 |
#### VM_OPTIONS |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
200 |
Additional VM options to JTReg (`-vmoption`). |
44511 | 201 |
|
202 |
### Gtest keywords |
|
203 |
||
204 |
#### REPEAT |
|
205 |
The number of times to repeat the tests (`--gtest_repeat`). |
|
206 |
||
207 |
Default is 1. Set to -1 to repeat indefinitely. This can be especially useful |
|
208 |
combined with `OPTIONS=--gtest_break_on_failure` to reproduce an intermittent |
|
209 |
problem. |
|
210 |
||
211 |
#### OPTIONS |
|
212 |
Additional options to the Gtest test framework. |
|
213 |
||
214 |
Use `GTEST="OPTIONS=--help"` to see all available Gtest options. |
|
215 |
||
216 |
--- |
|
44983 | 217 |
# Override some definitions in the global css file that are not optimal for |
218 |
# this document. |
|
44511 | 219 |
header-includes: |
220 |
- '<style type="text/css">pre, code, tt { color: #1d6ae5; }</style>' |
|
221 |
--- |