< prev index next >

test/jtreg-ext/requires/VMProps.java

Print this page
rev 49500 : [mq]: require_musl

*** 77,86 **** --- 77,87 ---- map.put("vm.cds.custom.loaders", vmCDSForCustomLoaders()); map.put("vm.cds.archived.java.heap", vmCDSForArchivedJavaHeap()); // vm.graal.enabled is true if Graal is used as JIT map.put("vm.graal.enabled", isGraalEnabled()); map.put("docker.support", dockerSupport()); + map.put("vm.musl", isMusl()); vmGC(map); // vm.gc.X = true/false VMProps.dump(map); return map; }
*** 404,414 **** p.waitFor(10, TimeUnit.SECONDS); return (p.exitValue() == 0); } ! /** * Dumps the map to the file if the file name is given as the property. * This functionality could be helpful to know context in the real * execution. --- 405,417 ---- p.waitFor(10, TimeUnit.SECONDS); return (p.exitValue() == 0); } ! private String isMusl(){ ! return (WB.isMusl()) ? "true" : "false"; ! } /** * Dumps the map to the file if the file name is given as the property. * This functionality could be helpful to know context in the real * execution.
< prev index next >