A lot of tests are explicitly testing NSK_FALSE or NSK_TRUE, these could be simplified.
Example:
- if (nsk_jvmti_parseOptions(options) == NSK_FALSE ) {
Could become
- if (!nsk_jvmti_parseOptions(options)) {
There are 76 files that have these cases.
Example:
- if (nsk_jvmti_parseOptions(options) == NSK_FALSE ) {
Could become
- if (!nsk_jvmti_parseOptions(options)) {
There are 76 files that have these cases.