o generating a project structure that now includes the original test code that is executed by the verifier

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463728 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-13 16:19:47 +00:00
parent bafa09fad7
commit 372a92b89c
1 changed files with 6 additions and 1 deletions

View File

@ -40,7 +40,12 @@ while (defined($filename = readdir(DIR))) {
system( "mkdir -p $itTestCaseDirectory" );
system( "cp -r $dirname/$filename $testProjectDirectory" );
#system( "mkdir -p $testProjectDirectory" );
system( "rm $testProjectDirectory/cli-options.txt > /dev/null 2>&1" );
system( "rm $testProjectDirectory/system.properties > /dev/null 2>&1" );
system( "rm $testProjectDirectory/verifier.properties > /dev/null 2>&1" );
system( "rm $testProjectDirectory/goals.txt > /dev/null 2>&1" );
system( "rm $testProjectDirectory/expected-results.txt > /dev/null 2>&1" );
system( "rm $testProjectDirectory/log.txt > /dev/null 2>&1" );
print $testFile . "\n";
open( T, "> $testFile") or die;