--- old/test/jdk/javax/management/loading/LibraryLoader/LibraryLoaderTest.java 2020-05-20 18:06:58.502109329 -0700 +++ new/test/jdk/javax/management/loading/LibraryLoader/LibraryLoaderTest.java 2020-05-20 18:06:58.110101802 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -58,12 +58,11 @@ // Check for supported platforms: // - // Solaris/SPARC and Windows/x86 + // Windows/x86 // - if ((!(osName.equals("SunOS") && osArch.equals("sparc"))) && - (!(osName.startsWith("Windows") && osArch.equals("x86")))) { + if ((!(osName.startsWith("Windows") && osArch.equals("x86")))) { System.out.println( - "This test runs only on Solaris/SPARC and Windows/x86 platforms"); + "This test runs only on Windows/x86 platforms"); System.out.println("Bye! Bye!"); return; }