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.
1 parent 428135c commit 4d76b10Copy full SHA for 4d76b10
compiler/test/dotty/tools/vulpix/SummaryReport.java
@@ -13,7 +13,9 @@
13
* this class
14
*/
15
public class SummaryReport {
16
- public final static boolean isInteractive = !System.getenv().containsKey("DRONE");
+ public final static boolean isInteractive =
17
+ !System.getenv().containsKey("DRONE") &&
18
+ !System.getProperty("java.class.path").contains("eclipse");
19
20
private static TestReporter rep = TestReporter.reporter(System.out, -1);
21
private static ArrayDeque<String> failedTests = new ArrayDeque<>();
0 commit comments