author | vlivanov |
Tue, 22 Jan 2019 18:13:49 -0800 | |
changeset 53435 | ea254e9fc587 |
parent 52595 | 16609197022c |
child 53464 | 650527b39f00 |
permissions | -rw-r--r-- |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50267
diff
changeset
|
1 |
% Testing the JDK |
44511 | 2 |
|
52342 | 3 |
## Using "make test" (the run-test framework) |
44511 | 4 |
|
5 |
This new way of running tests is developer-centric. It assumes that you have |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50267
diff
changeset
|
6 |
built a JDK locally and want to test it. Running common test targets is simple, |
44511 | 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 |
||
52342 | 10 |
The main target `test` uses the jdk-image as the tested product. There is |
11 |
also an alternate target `exploded-test` that uses the exploded image |
|
45266
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 |
|
52342 | 15 |
Previously, `make test` was used invoke an old system for running test, and |
16 |
`make run-test` was used for the new test framework. For backward compatibility |
|
17 |
with scripts and muscle memory, `run-test` (and variants like |
|
18 |
`exploded-run-test` or `run-test-tier1`) are kept as aliases. The old system |
|
19 |
can still be accessed for some time using `cd test && make`. |
|
20 |
||
44511 | 21 |
Some example command-lines: |
22 |
||
52342 | 23 |
$ make test-tier1 |
24 |
$ make test-jdk_lang JTREG="JOBS=8" |
|
25 |
$ make test TEST=jdk_lang |
|
26 |
$ make test-only TEST="gtest:LogTagSet gtest:LogTagSetDescriptions" GTEST="REPEAT=-1" |
|
27 |
$ make test TEST="hotspot:hotspot_gc" JTREG="JOBS=1;TIMEOUT=8;VM_OPTIONS=-XshowSettings -Xlog:gc+ref=debug" |
|
28 |
$ make test TEST="jtreg:test/hotspot:hotspot_gc test/hotspot/jtreg/native_sanity/JniVersion.java" |
|
52595
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
29 |
$ make test TEST="micro:java.lang.reflect" MICRO="FORK=1;WARMUP_ITER=2" |
52342 | 30 |
$ make exploded-test TEST=tier2 |
44511 | 31 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
32 |
### Configuration |
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
33 |
|
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
34 |
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
|
35 |
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
|
36 |
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
|
37 |
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
|
38 |
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
|
39 |
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
|
40 |
|
52595
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
41 |
To be able to run microbenchmarks, `configure` needs to know where to find |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
42 |
the JMH dependency. Use `--with-jmh=<path to JMH jars>` to point to a directory |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
43 |
containing the core JMH and transitive dependencies. The recommended dependencies |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
44 |
can be retrieved by running `sh make/devkit/createJMHBundle.sh`, after which |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
45 |
`--with-jmh=build/jmh/jars` should work. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
46 |
|
44511 | 47 |
## Test selection |
48 |
||
52342 | 49 |
All functionality is available using the `test` make target. In this use case, |
50 |
the test or tests to be executed is controlled using the `TEST` variable. To |
|
51 |
speed up subsequent test runs with no source code changes, `test-only` can be |
|
52 |
used instead, which do not depend on the source and test image build. |
|
44511 | 53 |
|
54 |
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
|
55 |
includes all JTReg test groups, the hotspot gtest, and custom tests (if |
52342 | 56 |
present). This means that `make test-tier1` is equivalent to `make test |
44511 | 57 |
TEST="tier1"`, but the latter is more tab-completion friendly. For more complex |
52342 | 58 |
test runs, the `test TEST="x"` solution needs to be used. |
44511 | 59 |
|
60 |
The test specifications given in `TEST` is parsed into fully qualified test |
|
61 |
descriptors, which clearly and unambigously show which tests will be run. As an |
|
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
62 |
example, `:tier1` will expand to `jtreg:$(TOPDIR)/test/hotspot/jtreg:tier1 |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
63 |
jtreg:$(TOPDIR)/test/jdk:tier1 jtreg:$(TOPDIR)/test/langtools:tier1 |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
64 |
jtreg:$(TOPDIR)/test/nashorn:tier1 jtreg:$(TOPDIR)/test/jaxp:tier1`. You can |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
65 |
always submit a list of fully qualified test descriptors in the `TEST` variable |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
66 |
if you want to shortcut the parser. |
44511 | 67 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
68 |
### JTReg |
44511 | 69 |
|
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
70 |
JTReg tests can be selected either by picking a JTReg test group, or a selection |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
71 |
of files or directories containing JTReg tests. |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
72 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
73 |
JTReg test groups can be specified either without a test root, e.g. `:tier1` |
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
74 |
(or `tier1`, the initial colon is optional), or with, e.g. `hotspot:tier1`, |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
75 |
`test/jdk:jdk_util` or `$(TOPDIR)/test/hotspot/jtreg:hotspot_all`. The test |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
76 |
root can be specified either as an absolute path, or a path relative to the |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50267
diff
changeset
|
77 |
JDK top directory, or the `test` directory. For simplicity, the hotspot |
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
78 |
JTReg test root, which really is `hotspot/jtreg` can be abbreviated as |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
79 |
just `hotspot`. |
44511 | 80 |
|
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
81 |
When specified without a test root, all matching groups from all test roots |
44511 | 82 |
will be added. Otherwise, only the group from the specified test root will be |
83 |
added. |
|
84 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
85 |
Individual JTReg tests or directories containing JTReg tests can also be |
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
86 |
specified, like `test/hotspot/jtreg/native_sanity/JniVersion.java` or |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
87 |
`hotspot/jtreg/native_sanity`. Just like for test root selection, you can |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
88 |
either specify an absolute path (which can even point to JTReg tests outside |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50267
diff
changeset
|
89 |
the source tree), or a path relative to either the JDK top directory or the |
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
90 |
`test` directory. `hotspot` can be used as an alias for `hotspot/jtreg` here as |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
91 |
well. |
44511 | 92 |
|
93 |
As long as the test groups or test paths can be uniquely resolved, you do not |
|
94 |
need to enter the `jtreg:` prefix. If this is not possible, or if you want to |
|
95 |
use a fully qualified test descriptor, add `jtreg:`, e.g. |
|
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49293
diff
changeset
|
96 |
`jtreg:test/hotspot/jtreg/native_sanity`. |
44511 | 97 |
|
98 |
### Gtest |
|
99 |
||
100 |
Since the Hotspot Gtest suite is so quick, the default is to run all tests. |
|
101 |
This is specified by just `gtest`, or as a fully qualified test descriptor |
|
102 |
`gtest:all`. |
|
103 |
||
104 |
If you want, you can single out an individual test or a group of tests, for |
|
105 |
instance `gtest:LogDecorations` or `gtest:LogDecorations.level_test_vm`. This |
|
106 |
can be particularly useful if you want to run a shaky test repeatedly. |
|
107 |
||
48058
c5eefa465e37
8192995: run-test gtest should use all jvm variants, not just "server"
ihse
parents:
47216
diff
changeset
|
108 |
For Gtest, there is a separate test suite for each JVM variant. The JVM variant |
c5eefa465e37
8192995: run-test gtest should use all jvm variants, not just "server"
ihse
parents:
47216
diff
changeset
|
109 |
is defined by adding `/<variant>` to the test descriptor, e.g. |
c5eefa465e37
8192995: run-test gtest should use all jvm variants, not just "server"
ihse
parents:
47216
diff
changeset
|
110 |
`gtest:Log/client`. If you specify no variant, gtest will run once for each JVM |
c5eefa465e37
8192995: run-test gtest should use all jvm variants, not just "server"
ihse
parents:
47216
diff
changeset
|
111 |
variant present (e.g. server, client). So if you only have the server JVM |
c5eefa465e37
8192995: run-test gtest should use all jvm variants, not just "server"
ihse
parents:
47216
diff
changeset
|
112 |
present, then `gtest:all` will be equivalent to `gtest:all/server`. |
c5eefa465e37
8192995: run-test gtest should use all jvm variants, not just "server"
ihse
parents:
47216
diff
changeset
|
113 |
|
52595
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
114 |
### Microbenchmarks |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
115 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
116 |
Which microbenchmarks to run is selected using a regular expression |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
117 |
following the `micro:` test descriptor, e.g., `micro:java.lang.reflect`. This |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
118 |
delegates the test selection to JMH, meaning package name, class name and even |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
119 |
benchmark method names can be used to select tests. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
120 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
121 |
Using special characters like `|` in the regular expression is possible, but |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
122 |
needs to be escaped multiple times: `micro:ArrayCopy\\\\\|reflect`. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
123 |
|
52342 | 124 |
### Special tests |
125 |
||
126 |
A handful of odd tests that are not covered by any other testing framework are |
|
127 |
accessible using the `special:` test descriptor. Currently, this includes |
|
52396
e292e94b448a
8213058: remove ExecuteInternalVMTests and VerboseInternalVMTests flags
iignatyev
parents:
52342
diff
changeset
|
128 |
`failure-handler` and `make`. |
52342 | 129 |
|
130 |
* Failure handler testing is run using `special:failure-handler` or just |
|
131 |
`failure-handler` as test descriptor. |
|
132 |
||
133 |
* Tests for the build system, including both makefiles and related |
|
134 |
functionality, is run using `special:make` or just `make` as test |
|
135 |
descriptor. This is equivalent to `special:make:all`. |
|
136 |
||
137 |
A specific make test can be run by supplying it as argument, e.g. |
|
138 |
`special:make:idea`. As a special syntax, this can also be expressed as |
|
139 |
`make-idea`, which allows for command lines as `make test-make-idea`. |
|
140 |
||
44511 | 141 |
## Test results and summary |
142 |
||
143 |
At the end of the test run, a summary of all tests run will be presented. This |
|
144 |
will have a consistent look, regardless of what test suites were used. This is |
|
145 |
a sample summary: |
|
146 |
||
147 |
============================== |
|
148 |
Test summary |
|
149 |
============================== |
|
150 |
TEST TOTAL PASS FAIL ERROR |
|
151 |
>> jtreg:jdk/test:tier1 1867 1865 2 0 << |
|
152 |
jtreg:langtools/test:tier1 4711 4711 0 0 |
|
153 |
jtreg:nashorn/test:tier1 133 133 0 0 |
|
154 |
============================== |
|
155 |
TEST FAILURE |
|
156 |
||
157 |
Tests where the number of TOTAL tests does not equal the number of PASSed tests |
|
158 |
will be considered a test failure. These are marked with the `>> ... <<` marker |
|
159 |
for easy identification. |
|
160 |
||
161 |
The classification of non-passed tests differs a bit between test suites. In |
|
162 |
the summary, ERROR is used as a catch-all for tests that neither passed nor are |
|
163 |
classified as failed by the framework. This might indicate test framework |
|
164 |
error, timeout or other problems. |
|
165 |
||
52342 | 166 |
In case of test failures, `make test` will exit with a non-zero exit value. |
44511 | 167 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
168 |
All tests have their result stored in `build/$BUILD/test-results/$TEST_ID`, |
44511 | 169 |
where TEST_ID is a path-safe conversion from the fully qualified test |
170 |
descriptor, e.g. for `jtreg:jdk/test:tier1` the TEST_ID is |
|
171 |
`jtreg_jdk_test_tier1`. This path is also printed in the log at the end of the |
|
172 |
test run. |
|
173 |
||
174 |
Additional work data is stored in `build/$BUILD/test-support/$TEST_ID`. For |
|
175 |
some frameworks, this directory might contain information that is useful in |
|
176 |
determining the cause of a failed test. |
|
177 |
||
178 |
## Test suite control |
|
179 |
||
180 |
It is possible to control various aspects of the test suites using make control |
|
181 |
variables. |
|
182 |
||
183 |
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
|
184 |
set. So, for instance, `JTREG="JOBS=1;TIMEOUT=8"` will set the JTReg |
44511 | 185 |
concurrency level to 1 and the timeout factor to 8. This is equivalent to |
186 |
setting `JTREG_JOBS=1 JTREG_TIMEOUT=8`, but using the keyword format means that |
|
187 |
the `JTREG` variable is parsed and verified for correctness, so |
|
188 |
`JTREG="TMIEOUT=8"` would give an error, while `JTREG_TMIEOUT=8` would just |
|
189 |
pass unnoticed. |
|
190 |
||
191 |
To separate multiple keyword=value pairs, use `;` (semicolon). Since the shell |
|
192 |
normally eats `;`, the recommended usage is to write the assignment inside |
|
193 |
qoutes, e.g. `JTREG="...;..."`. This will also make sure spaces are preserved, |
|
49293
9e1c1889136e
8200180: fix a typo in run-test framework documentation
iignatyev
parents:
48058
diff
changeset
|
194 |
as in `JTREG="VM_OPTIONS=-XshowSettings -Xlog:gc+ref=debug"`. |
44511 | 195 |
|
196 |
(Other ways are possible, e.g. using backslash: `JTREG=JOBS=1\;TIMEOUT=8`. |
|
197 |
Also, as a special technique, the string `%20` will be replaced with space for |
|
49293
9e1c1889136e
8200180: fix a typo in run-test framework documentation
iignatyev
parents:
48058
diff
changeset
|
198 |
certain options, e.g. `JTREG=VM_OPTIONS=-XshowSettings%20-Xlog:gc+ref=debug`. |
44511 | 199 |
This can be useful if you have layers of scripts and have trouble getting |
200 |
proper quoting of command line arguments through.) |
|
201 |
||
202 |
As far as possible, the names of the keywords have been standardized between |
|
203 |
test suites. |
|
204 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
205 |
### JTReg keywords |
44511 | 206 |
|
207 |
#### JOBS |
|
208 |
The test concurrency (`-concurrency`). |
|
209 |
||
210 |
Defaults to TEST_JOBS (if set by `--with-test-jobs=`), otherwise it defaults to |
|
211 |
JOBS, except for Hotspot, where the default is *number of CPU cores/2*, but |
|
212 |
never more than 12. |
|
213 |
||
214 |
#### TIMEOUT |
|
215 |
The timeout factor (`-timeoutFactor`). |
|
216 |
||
217 |
Defaults to 4. |
|
218 |
||
219 |
#### TEST_MODE |
|
220 |
The test mode (`-agentvm`, `-samevm` or `-othervm`). |
|
221 |
||
222 |
Defaults to `-agentvm`. |
|
223 |
||
224 |
#### ASSERT |
|
225 |
Enable asserts (`-ea -esa`, or none). |
|
226 |
||
227 |
Set to `true` or `false`. If true, adds `-ea -esa`. Defaults to true, except |
|
228 |
for hotspot. |
|
229 |
||
230 |
#### VERBOSE |
|
231 |
The verbosity level (`-verbose`). |
|
232 |
||
233 |
Defaults to `fail,error,summary`. |
|
234 |
||
235 |
#### RETAIN |
|
236 |
What test data to retain (`-retain`). |
|
237 |
||
238 |
Defaults to `fail,error`. |
|
239 |
||
240 |
#### MAX_MEM |
|
241 |
Limit memory consumption (`-Xmx` and `-vmoption:-Xmx`, or none). |
|
242 |
||
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
243 |
Limit memory consumption for JTReg test framework and VM under test. Set to 0 |
44511 | 244 |
to disable the limits. |
245 |
||
246 |
Defaults to 512m, except for hotspot, where it defaults to 0 (no limit). |
|
247 |
||
248 |
#### OPTIONS |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
249 |
Additional options to the JTReg test framework. |
44511 | 250 |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
251 |
Use `JTREG="OPTIONS=--help all"` to see all available JTReg options. |
44511 | 252 |
|
253 |
#### JAVA_OPTIONS |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
254 |
Additional Java options to JTReg (`-javaoption`). |
44511 | 255 |
|
256 |
#### VM_OPTIONS |
|
45618
74f490ba783a
8179537: Update testing.md for more clarity regarding JTReg configuration
ihse
parents:
44983
diff
changeset
|
257 |
Additional VM options to JTReg (`-vmoption`). |
44511 | 258 |
|
259 |
### Gtest keywords |
|
260 |
||
261 |
#### REPEAT |
|
262 |
The number of times to repeat the tests (`--gtest_repeat`). |
|
263 |
||
264 |
Default is 1. Set to -1 to repeat indefinitely. This can be especially useful |
|
265 |
combined with `OPTIONS=--gtest_break_on_failure` to reproduce an intermittent |
|
266 |
problem. |
|
267 |
||
268 |
#### OPTIONS |
|
269 |
Additional options to the Gtest test framework. |
|
270 |
||
271 |
Use `GTEST="OPTIONS=--help"` to see all available Gtest options. |
|
272 |
||
52595
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
273 |
### Microbenchmark keywords |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
274 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
275 |
#### FORK |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
276 |
Override the number of benchmark forks to spawn. Same as specifying `-f <num>`. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
277 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
278 |
#### ITER |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
279 |
Number of measurement iterations per fork. Same as specifying `-i <num>`. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
280 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
281 |
#### TIME |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
282 |
Amount of time to spend in each measurement iteration, in seconds. Same as |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
283 |
specifying `-r <num>` |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
284 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
285 |
#### WARMUP_ITER |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
286 |
Number of warmup iterations to run before the measurement phase in each fork. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
287 |
Same as specifying `-wi <num>`. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
288 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
289 |
#### WARMUP_TIME |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
290 |
Amount of time to spend in each warmup iteration. Same as specifying `-w <num>`. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
291 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
292 |
#### RESULTS_FORMAT |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
293 |
Specify to have the test run save a log of the values. Accepts the same values |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
294 |
as `-rff`, i.e., `text`, `csv`, `scsv`, `json`, or `latex`. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
295 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
296 |
#### VM_OPTIONS |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
297 |
Additional VM arguments to provide to forked off VMs. Same as `-jvmArgs <args>` |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
298 |
|
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
299 |
#### OPTIONS |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
300 |
Additional arguments to send to JMH. |
16609197022c
8061281: Microbenchmark suite build support, directory layout and sample benchmarks
redestad
parents:
52396
diff
changeset
|
301 |
|
44511 | 302 |
--- |
44983 | 303 |
# Override some definitions in the global css file that are not optimal for |
304 |
# this document. |
|
44511 | 305 |
header-includes: |
306 |
- '<style type="text/css">pre, code, tt { color: #1d6ae5; }</style>' |
|
307 |
--- |