Generate codegen tests on scripts
This commit is contained in:
@@ -1 +0,0 @@
|
|||||||
Collections.emptyList<String>()
|
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2014 JetBrains s.r.o.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.jet.codegen;
|
||||||
|
|
||||||
|
import com.intellij.openapi.util.Pair;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.jet.ConfigurationKind;
|
||||||
|
import org.jetbrains.jet.lang.resolve.ScriptNameUtil;
|
||||||
|
import org.jetbrains.jet.lang.resolve.name.FqName;
|
||||||
|
import org.jetbrains.jet.utils.UtilsPackage;
|
||||||
|
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
|
||||||
|
public abstract class AbstractScriptCodegenTest extends CodegenTestCase {
|
||||||
|
@Override
|
||||||
|
protected void setUp() throws Exception {
|
||||||
|
super.setUp();
|
||||||
|
createEnvironmentWithMockJdkAndIdeaAnnotations(ConfigurationKind.JDK_ONLY);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void doTest(@NotNull String filename) {
|
||||||
|
loadFileByFullPath(filename);
|
||||||
|
|
||||||
|
try {
|
||||||
|
FqName fqName = ScriptNameUtil.classNameForScript(myFiles.getPsiFile().getScript());
|
||||||
|
Class<?> scriptClass = generateClass(fqName.asString());
|
||||||
|
|
||||||
|
Constructor constructor = getTheOnlyConstructor(scriptClass);
|
||||||
|
Object scriptInstance = constructor.newInstance(myFiles.getScriptParameterValues().toArray());
|
||||||
|
|
||||||
|
assertFalse("expecting at least one expectation", myFiles.getExpectedValues().isEmpty());
|
||||||
|
|
||||||
|
for (Pair<String, String> nameValue : myFiles.getExpectedValues()) {
|
||||||
|
String fieldName = nameValue.first;
|
||||||
|
String expectedValue = nameValue.second;
|
||||||
|
|
||||||
|
if (expectedValue.equals("<nofield>")) {
|
||||||
|
try {
|
||||||
|
scriptClass.getDeclaredField(fieldName);
|
||||||
|
fail("must have no field " + fieldName);
|
||||||
|
}
|
||||||
|
catch (NoSuchFieldException e) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Field field = scriptClass.getDeclaredField(fieldName);
|
||||||
|
field.setAccessible(true);
|
||||||
|
Object result = field.get(scriptInstance);
|
||||||
|
String resultString = result != null ? result.toString() : "null";
|
||||||
|
assertEquals("comparing field " + fieldName, expectedValue, resultString);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Throwable e) {
|
||||||
|
System.out.println(generateToText());
|
||||||
|
throw UtilsPackage.rethrow(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@NotNull
|
||||||
|
private static Constructor getTheOnlyConstructor(@NotNull Class<?> clazz) {
|
||||||
|
Constructor[] constructors = clazz.getConstructors();
|
||||||
|
if (constructors.length != 1) {
|
||||||
|
throw new IllegalArgumentException("Script class should have one constructor: " + clazz);
|
||||||
|
}
|
||||||
|
return constructors[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2014 JetBrains s.r.o.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.jet.codegen;
|
||||||
|
|
||||||
|
import junit.framework.Assert;
|
||||||
|
import junit.framework.Test;
|
||||||
|
import junit.framework.TestSuite;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
import org.jetbrains.jet.JetTestUtils;
|
||||||
|
import org.jetbrains.jet.test.InnerTestClasses;
|
||||||
|
import org.jetbrains.jet.test.TestMetadata;
|
||||||
|
|
||||||
|
import org.jetbrains.jet.codegen.AbstractScriptCodegenTest;
|
||||||
|
|
||||||
|
/** This class is generated by {@link org.jetbrains.jet.generators.tests.TestsPackage}. DO NOT MODIFY MANUALLY */
|
||||||
|
@SuppressWarnings("all")
|
||||||
|
@TestMetadata("compiler/testData/codegen/script")
|
||||||
|
public class ScriptCodegenTestGenerated extends AbstractScriptCodegenTest {
|
||||||
|
public void testAllFilesPresentInScript() throws Exception {
|
||||||
|
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), "org.jetbrains.jet.generators.tests.TestsPackage", new File("compiler/testData/codegen/script"), Pattern.compile("^(.+)\\.kts$"), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("empty.kts")
|
||||||
|
public void testEmpty() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/empty.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("helloWorld.kts")
|
||||||
|
public void testHelloWorld() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/helloWorld.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("parameter.kts")
|
||||||
|
public void testParameter() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/parameter.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("parameterArray.kts")
|
||||||
|
public void testParameterArray() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/parameterArray.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("parameterClosure.kts")
|
||||||
|
public void testParameterClosure() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/parameterClosure.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("parameterLong.kts")
|
||||||
|
public void testParameterLong() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/parameterLong.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("secondLevelFunction.kts")
|
||||||
|
public void testSecondLevelFunction() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/secondLevelFunction.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("secondLevelFunctionClosure.kts")
|
||||||
|
public void testSecondLevelFunctionClosure() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/secondLevelFunctionClosure.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("secondLevelVal.kts")
|
||||||
|
public void testSecondLevelVal() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/secondLevelVal.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("string.kts")
|
||||||
|
public void testString() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/string.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("topLevelFunction.kts")
|
||||||
|
public void testTopLevelFunction() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/topLevelFunction.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("topLevelFunctionClosure.kts")
|
||||||
|
public void testTopLevelFunctionClosure() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/topLevelFunctionClosure.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
@TestMetadata("topLevelProperty.kts")
|
||||||
|
public void testTopLevelProperty() throws Exception {
|
||||||
|
doTest("compiler/testData/codegen/script/topLevelProperty.kts");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -16,17 +16,12 @@
|
|||||||
|
|
||||||
package org.jetbrains.jet.codegen;
|
package org.jetbrains.jet.codegen;
|
||||||
|
|
||||||
import com.intellij.openapi.util.Pair;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.jetbrains.jet.ConfigurationKind;
|
import org.jetbrains.jet.ConfigurationKind;
|
||||||
import org.jetbrains.jet.lang.parsing.JetScriptDefinition;
|
import org.jetbrains.jet.lang.parsing.JetScriptDefinition;
|
||||||
import org.jetbrains.jet.lang.parsing.JetScriptDefinitionProvider;
|
import org.jetbrains.jet.lang.parsing.JetScriptDefinitionProvider;
|
||||||
import org.jetbrains.jet.lang.resolve.AnalyzerScriptParameter;
|
import org.jetbrains.jet.lang.resolve.AnalyzerScriptParameter;
|
||||||
import org.jetbrains.jet.lang.resolve.ScriptNameUtil;
|
|
||||||
import org.jetbrains.jet.lang.resolve.name.FqName;
|
|
||||||
import org.jetbrains.jet.lang.resolve.name.Name;
|
import org.jetbrains.jet.lang.resolve.name.Name;
|
||||||
import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns;
|
import org.jetbrains.jet.lang.types.lang.KotlinBuiltIns;
|
||||||
import org.jetbrains.jet.utils.UtilsPackage;
|
|
||||||
import org.jetbrains.org.objectweb.asm.Opcodes;
|
import org.jetbrains.org.objectweb.asm.Opcodes;
|
||||||
|
|
||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
@@ -34,9 +29,7 @@ import java.lang.reflect.Field;
|
|||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
public class ScriptGenTest extends CodegenTestCase {
|
public class ScriptGenTest extends CodegenTestCase {
|
||||||
protected Object scriptInstance;
|
private static final JetScriptDefinition FIB_SCRIPT_DEFINITION =
|
||||||
|
|
||||||
public static final JetScriptDefinition FIB_SCRIPT_DEFINITION =
|
|
||||||
new JetScriptDefinition(".lang.kt",
|
new JetScriptDefinition(".lang.kt",
|
||||||
new AnalyzerScriptParameter(Name.identifier("num"), KotlinBuiltIns.getInstance().getIntType()));
|
new AnalyzerScriptParameter(Name.identifier("num"), KotlinBuiltIns.getInstance().getIntType()));
|
||||||
|
|
||||||
@@ -44,184 +37,53 @@ public class ScriptGenTest extends CodegenTestCase {
|
|||||||
protected void setUp() throws Exception {
|
protected void setUp() throws Exception {
|
||||||
super.setUp();
|
super.setUp();
|
||||||
createEnvironmentWithMockJdkAndIdeaAnnotations(ConfigurationKind.JDK_ONLY);
|
createEnvironmentWithMockJdkAndIdeaAnnotations(ConfigurationKind.JDK_ONLY);
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void tearDown() throws Exception {
|
|
||||||
scriptInstance = null;
|
|
||||||
super.tearDown();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void blackBoxScript(String filename) {
|
|
||||||
loadFile(filename);
|
|
||||||
|
|
||||||
try {
|
|
||||||
FqName fqName = ScriptNameUtil.classNameForScript(myFiles.getPsiFile().getScript());
|
|
||||||
Class<?> scriptClass = generateClass(fqName.asString());
|
|
||||||
|
|
||||||
Constructor constructor = getConstructor(scriptClass);
|
|
||||||
scriptInstance = constructor.newInstance(myFiles.getScriptParameterValues().toArray());
|
|
||||||
|
|
||||||
assertFalse("expecting at least one expectation", myFiles.getExpectedValues().isEmpty());
|
|
||||||
|
|
||||||
for (Pair<String, String> nameValue : myFiles.getExpectedValues()) {
|
|
||||||
String fieldName = nameValue.first;
|
|
||||||
String expectedValue = nameValue.second;
|
|
||||||
|
|
||||||
if (expectedValue.equals("<nofield>")) {
|
|
||||||
try {
|
|
||||||
scriptClass.getDeclaredField(fieldName);
|
|
||||||
fail("must have no field " + fieldName);
|
|
||||||
} catch (NoSuchFieldException e) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Field field = scriptClass.getDeclaredField(fieldName);
|
|
||||||
field.setAccessible(true);
|
|
||||||
Object result = field.get(scriptInstance);
|
|
||||||
String resultString = result != null ? result.toString() : "null";
|
|
||||||
assertEquals("comparing field " + fieldName, expectedValue, resultString);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Throwable e) {
|
|
||||||
System.out.println(generateToText());
|
|
||||||
throw UtilsPackage.rethrow(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
protected static Constructor getConstructor(@NotNull Class<?> clazz) {
|
|
||||||
Constructor[] constructors = clazz.getConstructors();
|
|
||||||
if (constructors.length != 1) {
|
|
||||||
throw new IllegalArgumentException("Script class should have one constructor: " + clazz);
|
|
||||||
}
|
|
||||||
return constructors[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testHelloWorld() {
|
|
||||||
blackBoxScript("script/helloWorld.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testString() {
|
|
||||||
blackBoxScript("script/string.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testTopLevelFunction() throws Exception {
|
|
||||||
blackBoxScript("script/topLevelFunction.kts");
|
|
||||||
Method method = scriptInstance.getClass().getMethod("factorial", int.class);
|
|
||||||
Object r = method.invoke(scriptInstance, 4);
|
|
||||||
assertEquals(24, r);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testTopLevelFunctionClosure() {
|
|
||||||
blackBoxScript("script/topLevelFunctionClosure.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testSecondLevelFunction() {
|
|
||||||
blackBoxScript("script/secondLevelFunction.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testSecondLevelFunctionClosure() {
|
|
||||||
blackBoxScript("script/secondLevelFunctionClosure.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testSecondLevelVal() {
|
|
||||||
blackBoxScript("script/secondLevelVal.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testTopLevelProperty() {
|
|
||||||
blackBoxScript("script/topLevelProperty.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testScriptParameter() {
|
|
||||||
blackBoxScript("script/parameter.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testScriptParameterLong() {
|
|
||||||
blackBoxScript("script/parameterLong.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testScriptParameterArray() {
|
|
||||||
blackBoxScript("script/parameterArray.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testScriptParameterClosure() {
|
|
||||||
blackBoxScript("script/parameterClosure.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testEmpty() {
|
|
||||||
blackBoxScript("script/empty.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testLanguage() {
|
|
||||||
JetScriptDefinitionProvider.getInstance(myEnvironment.getProject()).addScriptDefinition(FIB_SCRIPT_DEFINITION);
|
JetScriptDefinitionProvider.getInstance(myEnvironment.getProject()).addScriptDefinition(FIB_SCRIPT_DEFINITION);
|
||||||
loadFile("script/fib.lang.kt");
|
}
|
||||||
|
|
||||||
|
public void testLanguage() throws Exception {
|
||||||
|
loadFile("scriptCustom/fib.lang.kt");
|
||||||
Class<?> aClass = generateClass("Fib");
|
Class<?> aClass = generateClass("Fib");
|
||||||
try {
|
Constructor constructor = aClass.getConstructor(int.class);
|
||||||
Constructor constructor = aClass.getConstructor(int.class);
|
Field result = aClass.getDeclaredField("result");
|
||||||
Field result = aClass.getDeclaredField("result");
|
result.setAccessible(true);
|
||||||
result.setAccessible(true);
|
Object script = constructor.newInstance(5);
|
||||||
Object script = constructor.newInstance(5);
|
assertEquals(8, result.get(script));
|
||||||
assertEquals(8,result.get(script));
|
|
||||||
}
|
|
||||||
catch (Exception e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testLanguageWithPackage() {
|
public void testLanguageWithPackage() throws Exception {
|
||||||
JetScriptDefinitionProvider.getInstance(myEnvironment.getProject()).addScriptDefinition(FIB_SCRIPT_DEFINITION);
|
loadFile("scriptCustom/fibwp.lang.kt");
|
||||||
loadFile("script/fibwp.lang.kt");
|
|
||||||
Class<?> aClass = generateClass("test.Fibwp");
|
Class<?> aClass = generateClass("test.Fibwp");
|
||||||
try {
|
Constructor constructor = aClass.getConstructor(int.class);
|
||||||
Constructor constructor = aClass.getConstructor(int.class);
|
Field result = aClass.getDeclaredField("result");
|
||||||
Field result = aClass.getDeclaredField("result");
|
result.setAccessible(true);
|
||||||
result.setAccessible(true);
|
Object script = constructor.newInstance(5);
|
||||||
Object script = constructor.newInstance(5);
|
assertEquals(8, result.get(script));
|
||||||
assertEquals(8,result.get(script));
|
|
||||||
}
|
|
||||||
catch (Exception e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testDependentScripts() {
|
public void testDependentScripts() throws Exception {
|
||||||
JetScriptDefinitionProvider.getInstance(myEnvironment.getProject()).addScriptDefinition(FIB_SCRIPT_DEFINITION);
|
loadFiles("scriptCustom/fibwp.lang.kt", "scriptCustom/fibwprunner.kts");
|
||||||
loadFiles("script/fibwp.lang.kt", "script/fibwprunner.kts");
|
|
||||||
Class<?> aClass = generateClass("Fibwprunner");
|
Class<?> aClass = generateClass("Fibwprunner");
|
||||||
try {
|
Constructor constructor = aClass.getConstructor();
|
||||||
Constructor constructor = aClass.getConstructor();
|
Field result = aClass.getDeclaredField("result");
|
||||||
Field result = aClass.getDeclaredField("result");
|
result.setAccessible(true);
|
||||||
result.setAccessible(true);
|
Method resultMethod = aClass.getDeclaredMethod("getResult");
|
||||||
Method resultMethod = aClass.getDeclaredMethod("getResult");
|
assertTrue((resultMethod.getModifiers() & Opcodes.ACC_FINAL) != 0);
|
||||||
assertTrue((resultMethod.getModifiers() & Opcodes.ACC_FINAL) != 0);
|
assertTrue((resultMethod.getModifiers() & Opcodes.ACC_PUBLIC) != 0);
|
||||||
assertTrue((resultMethod.getModifiers() & Opcodes.ACC_PUBLIC) != 0);
|
Field rv = aClass.getField("rv");
|
||||||
Field rv = aClass.getField("rv");
|
assertTrue((result.getModifiers() & Opcodes.ACC_PRIVATE) != 0);
|
||||||
assertTrue((result.getModifiers() & Opcodes.ACC_PRIVATE) != 0);
|
Object script = constructor.newInstance();
|
||||||
Object script = constructor.newInstance();
|
assertEquals(12, rv.get(script));
|
||||||
assertEquals(12,rv.get(script));
|
assertEquals(8, result.get(script));
|
||||||
assertEquals(8,result.get(script));
|
assertEquals(8, resultMethod.invoke(script));
|
||||||
assertEquals(8,resultMethod.invoke(script));
|
|
||||||
}
|
|
||||||
catch (Exception e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testScriptWhereMethodHasClosure() {
|
public void testScriptWhereMethodHasClosure() throws Exception {
|
||||||
JetScriptDefinitionProvider.getInstance(myEnvironment.getProject()).addScriptDefinition(FIB_SCRIPT_DEFINITION);
|
loadFile("scriptCustom/methodWithClosure.lang.kt");
|
||||||
loadFile("script/methodWithClosure.lang.kt");
|
|
||||||
Class<?> aClass = generateClass("MethodWithClosure");
|
Class<?> aClass = generateClass("MethodWithClosure");
|
||||||
try {
|
Constructor constructor = aClass.getConstructor(int.class);
|
||||||
Constructor constructor = aClass.getConstructor(int.class);
|
Object script = constructor.newInstance(239);
|
||||||
Object script = constructor.newInstance(239);
|
Method fib = aClass.getMethod("method");
|
||||||
Method fib = aClass.getMethod("method");
|
Object invoke = fib.invoke(script);
|
||||||
Object invoke = fib.invoke(script);
|
assertEquals(239, ((Integer) invoke) / 2);
|
||||||
assertEquals(239, ((Integer)invoke)/2);
|
|
||||||
}
|
|
||||||
catch (Exception e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -116,6 +116,7 @@ import org.jetbrains.jet.jps.build.AbstractIncrementalJpsTest
|
|||||||
import org.jetbrains.jet.asJava.AbstractKotlinLightClassTest
|
import org.jetbrains.jet.asJava.AbstractKotlinLightClassTest
|
||||||
import org.jetbrains.jet.lang.resolve.java.AbstractJavaTypeSubstitutorTest
|
import org.jetbrains.jet.lang.resolve.java.AbstractJavaTypeSubstitutorTest
|
||||||
import org.jetbrains.jet.plugin.intentions.declarations.AbstractJoinLinesTest
|
import org.jetbrains.jet.plugin.intentions.declarations.AbstractJoinLinesTest
|
||||||
|
import org.jetbrains.jet.codegen.AbstractScriptCodegenTest
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
System.setProperty("java.awt.headless", "true")
|
System.setProperty("java.awt.headless", "true")
|
||||||
@@ -180,6 +181,10 @@ fun main(args: Array<String>) {
|
|||||||
model("codegen/boxWithStdlib", testMethod = "doTestWithStdlib")
|
model("codegen/boxWithStdlib", testMethod = "doTestWithStdlib")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
testClass(javaClass<AbstractScriptCodegenTest>()) {
|
||||||
|
model("codegen/script", extension = "kts")
|
||||||
|
}
|
||||||
|
|
||||||
testClass(javaClass<AbstractBytecodeTextTest>()) {
|
testClass(javaClass<AbstractBytecodeTextTest>()) {
|
||||||
model("codegen/bytecodeText")
|
model("codegen/bytecodeText")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user