diff --git a/compiler/tests-for-compiler-generator/tests/org/jetbrains/kotlin/test/generators/GenerateJUnit3CompilerTests.kt b/compiler/tests-for-compiler-generator/tests/org/jetbrains/kotlin/test/generators/GenerateJUnit3CompilerTests.kt index a19103f0163..2bf92c94611 100644 --- a/compiler/tests-for-compiler-generator/tests/org/jetbrains/kotlin/test/generators/GenerateJUnit3CompilerTests.kt +++ b/compiler/tests-for-compiler-generator/tests/org/jetbrains/kotlin/test/generators/GenerateJUnit3CompilerTests.kt @@ -311,7 +311,7 @@ fun generateJUnit3CompilerTests(args: Array) { } testClass { - model("integration/ant/jvm", extension = null, recursive = false, excludeParentDirs = true) + model("integration/ant/jvm", extension = null, recursive = false) } testClass { diff --git a/compiler/tests-gen/org/jetbrains/kotlin/integration/AntTaskTestGenerated.java b/compiler/tests-gen/org/jetbrains/kotlin/integration/AntTaskTestGenerated.java index 749b799377d..42359965240 100644 --- a/compiler/tests-gen/org/jetbrains/kotlin/integration/AntTaskTestGenerated.java +++ b/compiler/tests-gen/org/jetbrains/kotlin/integration/AntTaskTestGenerated.java @@ -44,6 +44,16 @@ public class AntTaskTestGenerated extends AbstractAntTaskTest { runTest("compiler/testData/integration/ant/jvm/failOnErrorByDefault/"); } + @TestMetadata("fork") + public void testFork() throws Exception { + runTest("compiler/testData/integration/ant/jvm/fork/"); + } + + @TestMetadata("forkOnError") + public void testForkOnError() throws Exception { + runTest("compiler/testData/integration/ant/jvm/forkOnError/"); + } + @TestMetadata("helloWorld") public void testHelloWorld() throws Exception { runTest("compiler/testData/integration/ant/jvm/helloWorld/"); @@ -74,6 +84,11 @@ public class AntTaskTestGenerated extends AbstractAntTaskTest { runTest("compiler/testData/integration/ant/jvm/mainInFiles/"); } + @TestMetadata("manySourceRoots") + public void testManySourceRoots() throws Exception { + runTest("compiler/testData/integration/ant/jvm/manySourceRoots/"); + } + @TestMetadata("moduleName") public void testModuleName() throws Exception { runTest("compiler/testData/integration/ant/jvm/moduleName/");