Description
- JMH allows for parameterized tests -- see example below where
queryIndex is a parameter:
Benchmark (queryIndex) Mode Cnt Score Error Units
ParserBenchmark.parseSuccess 0 avgt 3 15.148 ± 0.616 us/op
ParserBenchmark.parseSuccess 1 avgt 3 85.174 ± 4.559 us/op
...
- The
jmh tool doesn't support parameters, and all of the parameter runs get placed within a single benchmark. See below.

- Note the same commit for all datapoints.
To Reproduce
- Add the JMH @param annotation to the benchmark with the arguments
- Run the GH workflow after running JMH
Description
queryIndexis a parameter:jmhtool doesn't support parameters, and all of the parameter runs get placed within a single benchmark. See below.
- Note the same commit for all datapoints.To Reproduce