< prev index next >

test/jdk/tools/launcher/Test7029048.java

Print this page
rev 53383 : 8217438: [testbug][aix] Adapt Test7029048 to aix launcher.

*** 153,168 **** --- 153,178 ---- } else { Files.deleteIfExists(dstServerLibjvm.toPath()); } desc = "LD_LIBRARY_PATH should not be set (no libjvm.so)"; + if (TestHelper.isAIX) { + System.out.println("Skipping test case \"" + desc + + "\" because the Aix launcher adds the paths in any case."); + continue; + } break; case NO_DIR: if (dstLibDir.exists()) { recursiveDelete(dstLibDir); } desc = "LD_LIBRARY_PATH should not be set (no directory)"; + if (TestHelper.isAIX) { + System.out.println("Skipping test case \"" + desc + + "\" because the Aix launcher adds the paths in any case."); + continue; + } break; default: throw new RuntimeException("unknown case"); }
< prev index next >