--- old/test/jdk/java/lang/System/OsVersionTest.java 2020-05-20 18:06:07.781135449 -0700 +++ new/test/jdk/java/lang/System/OsVersionTest.java 2020-05-20 18:06:07.389127922 -0700 @@ -41,7 +41,7 @@ if (osVersion == null) { throw new Error("Cant query 'os.version' property!"); } - if (Platform.isLinux() || Platform.isSolaris()) { + if (Platform.isLinux()) { OutputAnalyzer output = ProcessTools.executeProcess("uname", "-r"); if (!osVersion.equals(output.getOutput().trim())) { throw new Error(osVersion + " != " + output.getOutput().trim());