--- old/test/hotspot/jtreg/runtime/appcds/customLoader/UnsupportedPlatforms.java 2017-11-27 19:20:11.692535448 +0100 +++ new/test/hotspot/jtreg/runtime/appcds/customLoader/UnsupportedPlatforms.java 2017-11-27 19:20:11.412537898 +0100 @@ -25,7 +25,7 @@ /* * @test * @summary Ensure that support for AppCDS custom class loaders are not enabled on unsupported platforms. - * The only supported platforms are Linux/AMD64 and 64-bit Solaris. + * The only supported platforms are 64-bit Linux, Solaris and AIX. * (NOTE: AppCDS does not support uncompressed oops) * @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true) * @library /test/lib /test/hotspot/jtreg/runtime/appcds @@ -55,8 +55,7 @@ OutputAnalyzer out = TestCommon.dump(appJar, classlist); - if ((Platform.isSolaris() && Platform.is64bit()) || - (Platform.isLinux() && Platform.isX64())) { + if (Platform.is64bit() && (Platform.isSolaris() || Platform.isLinux() || Platform.isAix())) { out.shouldNotContain(PLATFORM_NOT_SUPPORTED_WARNING); out.shouldHaveExitValue(0); } else {