actually compile should be on by default

(it is safer)
This commit is contained in:
Stepan Koltsov
2012-04-28 20:34:33 +04:00
parent 661b16359a
commit b24634eb99
@@ -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;