add in another failure, and put back 42 and 81, kenney has fixed the sorter

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463938 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-14 13:54:58 +00:00
parent 4a4d00fd04
commit 8f9eed6821
1 changed files with 8 additions and 4 deletions

View File

@ -45,12 +45,16 @@ while (defined($filename = readdir(DIR))) {
# 42, 81, 96, 97 will not due to bugs in maven, they work when other ITs are run but it's due to ordering and fluke # 42, 81, 96, 97 will not due to bugs in maven, they work when other ITs are run but it's due to ordering and fluke
# 43 will not run because it can't find the maven-help-plugin # 43 will not run because it can't find the maven-help-plugin
# 90 will not run because it relies of an environment variable which I think is wrong # 90 will not run because it relies of an environment variable which I think is wrong
if ( $filename eq "it0042" || # 91 POM interpolation test failure
$filename eq "it0081" || # 98 fails because it needs a quoted CLI property, this isn't really a core problem and certainly won't be valid in an embedded env
$filename eq "it0096" || # 104 test failure in interpolation
if ( $filename eq "it0096" ||
$filename eq "it0097" || $filename eq "it0097" ||
$filename eq "it0043" || $filename eq "it0043" ||
$filename eq "it0090" ) $filename eq "it0090" ||
$filename eq "it0091" ||
$filename eq "it0098" ||
$filename eq "it0104" )
{ {
print POM " <!-- <module>$filename</module> -->\n"; print POM " <!-- <module>$filename</module> -->\n";
} }