We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 472a9ea + 5bc91fe commit 7368915Copy full SHA for 7368915
compiler/src/org.graalvm.compiler.test/src/org/graalvm/compiler/test/SubprocessUtil.java
@@ -39,6 +39,7 @@
39
40
import org.graalvm.compiler.serviceprovider.GraalServices;
41
import org.graalvm.util.CollectionsUtil;
42
+import org.junit.Assume;
43
44
/**
45
* Utility methods for spawning a VM in a subprocess during unit tests.
@@ -61,6 +62,8 @@ public static List<String> getProcessCommandLine() {
61
62
return Files.readAllLines(new File(processArgsFile).toPath());
63
} catch (IOException e) {
64
}
65
+ } else {
66
+ Assume.assumeTrue("Process command line unavailable", false);
67
68
return null;
69
0 commit comments