Fix incorrect generation of Ant task tests, restore tests
This commit is contained in:
+1
-1
@@ -311,7 +311,7 @@ fun generateJUnit3CompilerTests(args: Array<String>) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
testClass<AbstractAntTaskTest> {
|
testClass<AbstractAntTaskTest> {
|
||||||
model("integration/ant/jvm", extension = null, recursive = false, excludeParentDirs = true)
|
model("integration/ant/jvm", extension = null, recursive = false)
|
||||||
}
|
}
|
||||||
|
|
||||||
testClass<AbstractControlFlowTest> {
|
testClass<AbstractControlFlowTest> {
|
||||||
|
|||||||
+15
@@ -44,6 +44,16 @@ public class AntTaskTestGenerated extends AbstractAntTaskTest {
|
|||||||
runTest("compiler/testData/integration/ant/jvm/failOnErrorByDefault/");
|
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")
|
@TestMetadata("helloWorld")
|
||||||
public void testHelloWorld() throws Exception {
|
public void testHelloWorld() throws Exception {
|
||||||
runTest("compiler/testData/integration/ant/jvm/helloWorld/");
|
runTest("compiler/testData/integration/ant/jvm/helloWorld/");
|
||||||
@@ -74,6 +84,11 @@ public class AntTaskTestGenerated extends AbstractAntTaskTest {
|
|||||||
runTest("compiler/testData/integration/ant/jvm/mainInFiles/");
|
runTest("compiler/testData/integration/ant/jvm/mainInFiles/");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("manySourceRoots")
|
||||||
|
public void testManySourceRoots() throws Exception {
|
||||||
|
runTest("compiler/testData/integration/ant/jvm/manySourceRoots/");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("moduleName")
|
@TestMetadata("moduleName")
|
||||||
public void testModuleName() throws Exception {
|
public void testModuleName() throws Exception {
|
||||||
runTest("compiler/testData/integration/ant/jvm/moduleName/");
|
runTest("compiler/testData/integration/ant/jvm/moduleName/");
|
||||||
|
|||||||
Reference in New Issue
Block a user