mirror of https://github.com/apache/maven.git
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463391 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9000f21fd7
commit
5221e959f4
|
@ -71,7 +71,18 @@ while ( <TESTS> )
|
|||
}
|
||||
|
||||
print "};" . "\n";
|
||||
|
||||
|
||||
$TEST_SUITE = <<EOF;
|
||||
TestSuite suite = new TestSuite(IntegrationTests.class.getName());
|
||||
for (int i = 0; i < tests.length; i++) {
|
||||
suite.addTest(new IntegrationTests(tests[i]));
|
||||
}
|
||||
return suite;
|
||||
}
|
||||
EOF
|
||||
|
||||
print $TEST_SUITE;
|
||||
|
||||
opendir(DIR, $dirname) or die "can't opendir $dirname: $!";
|
||||
while (defined($filename = readdir(DIR))) {
|
||||
next unless (-d "$dirname/$filename");
|
||||
|
|
Loading…
Reference in New Issue