The jtreg code has specific check for macos to get the version reported by the OS and then compare it to the value of the "os.version" Java system property. To do this, the jtreg code uses ProcessBuilder to launch a macos command which prints out the version. The printed version is then considered as the expected version and compared against the value of os.version. https://github.com/openjdk/jtreg/blob/master/src/share/classes/com/sun/javatest/regtest/tool/Tool.java#L195
If the command runs into any error and the process exits with a non-zero code, then right now, any error message written out by the process ends up being considered as the expected version and then compared against the "os.version" system property.
This code can be improved to compare the process output with the "os.version" value, only when the process exits successfully (i.e. exit code = 0).
If the command runs into any error and the process exits with a non-zero code, then right now, any error message written out by the process ends up being considered as the expected version and then compared against the "os.version" system property.
This code can be improved to compare the process output with the "os.version" value, only when the process exits successfully (i.e. exit code = 0).