Author: jvanzyl Date: Fri Oct 13 09:19:47 2006 New Revision: 463728 URL: http://svn.apache.org/viewvc?view=rev&rev=463728 Log: o generating a project structure that now includes the original test code that is executed by the verifier
Modified: maven/components/trunk/mavenexecute.pl Modified: maven/components/trunk/mavenexecute.pl URL: http://svn.apache.org/viewvc/maven/components/trunk/mavenexecute.pl?view=diff&rev=463728&r1=463727&r2=463728 ============================================================================== --- maven/components/trunk/mavenexecute.pl (original) +++ maven/components/trunk/mavenexecute.pl Fri Oct 13 09:19:47 2006 @@ -40,7 +40,12 @@ 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;