mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Changed a = to a .= so we now append tests we have performed to the master list of all tests instead of assigning it as the master list.
llvm-svn: 29531
This commit is contained in:
parent
bb13b66737
commit
81b25121b6
@ -885,15 +885,15 @@ if(!$NODEJAGNU) {
|
||||
for($x=0; $x<@DEJAGNU; $x++){
|
||||
if($DEJAGNU[$x] =~ m/^PASS:/){
|
||||
$passes.="$DEJAGNU[$x]\n";
|
||||
$dejagnu_test_list="$DEJAGNU[$x]\n";
|
||||
$dejagnu_test_list.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
elsif($DEJAGNU[$x] =~ m/^FAIL:/){
|
||||
$fails.="$DEJAGNU[$x]\n";
|
||||
$dejagnu_test_list="$DEJAGNU[$x]\n";
|
||||
$dejagnu_test_list.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
elsif($DEJAGNU[$x] =~ m/^XFAIL:/){
|
||||
$xfails.="$DEJAGNU[$x]\n";
|
||||
$dejagnu_test_list="$DEJAGNU[$x]\n";
|
||||
$dejagnu_test_list.="$DEJAGNU[$x]\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user