mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Added a check to skip dejagnu test results gathering if we did not run dejagnu tests
llvm-svn: 29252
This commit is contained in:
parent
3d34e1c416
commit
889052bcba
@ -832,22 +832,24 @@ if (!$BuildError && $patrickjenkins) {
|
||||
#
|
||||
#
|
||||
##############################################################
|
||||
$dejagnu = ReadFile $DejagnuSum;
|
||||
@DEJAGNU = split "\n", $dejagnu;
|
||||
my $dejagnu = ReadFile $DejagnuSum;
|
||||
my @DEJAGNU = split "\n", $dejagnu;
|
||||
|
||||
my $passes="",
|
||||
my $fails="";
|
||||
my $xfails="";
|
||||
|
||||
for($x=0; $x<@DEJAGNU; $x++){
|
||||
if($DEJAGNU[$x] =~ m/^PASS:/){
|
||||
$passes.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
elsif($DEJAGNU[$x] =~ m/^FAIL:/){
|
||||
$fails.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
elsif($DEJAGNU[$x] =~ m/^XFAIL:/){
|
||||
$xfails.="$DEJAGNU[$x]\n";
|
||||
if(!$NODEJAGNU) {
|
||||
for($x=0; $x<@DEJAGNU; $x++){
|
||||
if($DEJAGNU[$x] =~ m/^PASS:/){
|
||||
$passes.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
elsif($DEJAGNU[$x] =~ m/^FAIL:/){
|
||||
$fails.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
elsif($DEJAGNU[$x] =~ m/^XFAIL:/){
|
||||
$xfails.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user