I wanted to try out the new feature of JMH by running it as Java Application in eclipse. I imported and built jmh-samples project. Compiled classes ended in /jmh-samples/target/generated-sources/annotations, there are several JARs in /target/ and running microbenchmarks.jar from command line works as usual.
However when I execute main I always get
No matching benchmarks. Miss-spelled regexp?
Any ideas? I am using version 0.3
jmh-dev@ is a better way to communicate this with the developers.
Few things to try:
Main
is probably not a good idea. Use Java API instead, like this sample.-v extra
to debug the pattern matching: either the filter regexp is incorrect, or there are no benchmarks to run.target/classes/
is also available on classpath.