Describe the bug
Running build with jmhAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.37' causes compilation failure due to missing shouldYield field in the org.openjdk.jmh.runner.InfraControl class.
Downgrading back to version 1.36 resolves the issue.
if (control.shouldYield) Thread.yield();
^
symbol: variable shouldYield
location: variable control of type InfraControl
To Reproduce
Steps to reproduce the behavior:
- Upgrade to
jmh-generator-annprocess:1.37
- Run build
- See the error mentioned above