< prev index next >

doc/testing.md

Print this page
rev 52573 : 8061281: Microbenchmark suite build support, directory layout and sample benchmarks
8061282: Migrate jmh-jdk-microbenchmarks into the JDK
Reviewed-by: ecaspole, mchung, erikj, ihse
Contributed-by: magnus.ihse.bursie@oracle.com, erik.joelsson@oracle.com, claes.redestad@oracle.com, sfriberg@kth.se

*** 24,33 **** --- 24,34 ---- $ make test-jdk_lang JTREG="JOBS=8" $ make test TEST=jdk_lang $ make test-only TEST="gtest:LogTagSet gtest:LogTagSetDescriptions" GTEST="REPEAT=-1" $ make test TEST="hotspot:hotspot_gc" JTREG="JOBS=1;TIMEOUT=8;VM_OPTIONS=-XshowSettings -Xlog:gc+ref=debug" $ make test TEST="jtreg:test/hotspot:hotspot_gc test/hotspot/jtreg/native_sanity/JniVersion.java" + $ make test TEST="micro:java.lang.reflect" MICRO="FORK=1;WARMUP_ITER=2" $ make exploded-test TEST=tier2 ### Configuration To be able to run JTReg tests, `configure` needs to know where to find the
*** 35,44 **** --- 36,51 ---- the `--with-jtreg=<path to jtreg home>` option to point to the JTReg framework. Note that this option should point to the JTReg home, i.e. the top directory, containing `lib/jtreg.jar` etc. (An alternative is to set the `JT_HOME` environment variable to point to the JTReg home before running `configure`.) + To be able to run microbenchmarks, `configure` needs to know where to find + the JMH dependency. Use `--with-jmh=<path to JMH jars>` to point to a directory + containing the core JMH and transitive dependencies. The recommended dependencies + can be retrieved by running `sh make/devkit/createJMHBundle.sh`, after which + `--with-jmh=build/jmh/jars` should work. + ## Test selection All functionality is available using the `test` make target. In this use case, the test or tests to be executed is controlled using the `TEST` variable. To speed up subsequent test runs with no source code changes, `test-only` can be
*** 102,111 **** --- 109,128 ---- is defined by adding `/<variant>` to the test descriptor, e.g. `gtest:Log/client`. If you specify no variant, gtest will run once for each JVM variant present (e.g. server, client). So if you only have the server JVM present, then `gtest:all` will be equivalent to `gtest:all/server`. + ### Microbenchmarks + + Which microbenchmarks to run is selected using a regular expression + following the `micro:` test descriptor, e.g., `micro:java.lang.reflect`. This + delegates the test selection to JMH, meaning package name, class name and even + benchmark method names can be used to select tests. + + Using special characters like `|` in the regular expression is possible, but + needs to be escaped multiple times: `micro:ArrayCopy\\\\\|reflect`. + ### Special tests A handful of odd tests that are not covered by any other testing framework are accessible using the `special:` test descriptor. Currently, this includes `failure-handler` and `make`.
*** 251,260 **** --- 268,306 ---- #### OPTIONS Additional options to the Gtest test framework. Use `GTEST="OPTIONS=--help"` to see all available Gtest options. + ### Microbenchmark keywords + + #### FORK + Override the number of benchmark forks to spawn. Same as specifying `-f <num>`. + + #### ITER + Number of measurement iterations per fork. Same as specifying `-i <num>`. + + #### TIME + Amount of time to spend in each measurement iteration, in seconds. Same as + specifying `-r <num>` + + #### WARMUP_ITER + Number of warmup iterations to run before the measurement phase in each fork. + Same as specifying `-wi <num>`. + + #### WARMUP_TIME + Amount of time to spend in each warmup iteration. Same as specifying `-w <num>`. + + #### RESULTS_FORMAT + Specify to have the test run save a log of the values. Accepts the same values + as `-rff`, i.e., `text`, `csv`, `scsv`, `json`, or `latex`. + + #### VM_OPTIONS + Additional VM arguments to provide to forked off VMs. Same as `-jvmArgs <args>` + + #### OPTIONS + Additional arguments to send to JMH. + --- # Override some definitions in the global css file that are not optimal for # this document. header-includes: - '<style type="text/css">pre, code, tt { color: #1d6ae5; }</style>'
< prev index next >