From b24634eb9919bc5b4efda1c9ea6796d30a9c6c0f Mon Sep 17 00:00:00 2001 From: Stepan Koltsov Date: Sat, 28 Apr 2012 20:34:33 +0400 Subject: [PATCH] actually compile should be on by default (it is safer) --- .../jet/codegen/forTestCompile/ForTestCompileSomething.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/org/jetbrains/jet/codegen/forTestCompile/ForTestCompileSomething.java b/compiler/tests/org/jetbrains/jet/codegen/forTestCompile/ForTestCompileSomething.java index e9accd9cd59..1682f61309a 100644 --- a/compiler/tests/org/jetbrains/jet/codegen/forTestCompile/ForTestCompileSomething.java +++ b/compiler/tests/org/jetbrains/jet/codegen/forTestCompile/ForTestCompileSomething.java @@ -36,7 +36,7 @@ import java.util.jar.JarOutputStream; */ abstract class ForTestCompileSomething { - public static final boolean ACTUALLY_COMPILE = "true".equals(System.getenv("kotlin.tests.actually.compile")); + public static final boolean ACTUALLY_COMPILE = !"false".equals(System.getenv("kotlin.tests.actually.compile")); @NotNull private final String jarName;