swap columns

This commit is contained in:
Sébastien Loriot 2021-04-15 14:34:25 +02:00
parent 7611a0bdfc
commit 26bbda71de
1 changed files with 3 additions and 3 deletions

View File

@ -459,8 +459,8 @@ sub print_platform_descriptions()
<th colspan="2">OS and compiler</th>
<th>Tester</th>
<th class="ok">y</th>
<th class="warning">w</th>
<th class="third_party_warning">t</th>
<th class="warning">w</th>
<th class="error">n</th>
<th class="requirements">r</th>
<th>CMake</th>
@ -498,8 +498,8 @@ EOF
my $tester_address = $_;
my $county = $testresults[$platform_num]->{"y"};
my $countw = $testresults[$platform_num]->{"w"};
my $countt = $testresults[$platform_num]->{"t"};
my $countw = $testresults[$platform_num]->{"w"};
my $countn = $testresults[$platform_num]->{"n"};
my $countr = $testresults[$platform_num]->{"r"};
@ -517,8 +517,8 @@ EOF
print OUTPUT "</td>\n";
print OUTPUT "<td><a href=\"mailto:$tester_address\">$tester_name</a></td>\n";
print OUTPUT "<td>$county</td>\n";
print OUTPUT "<td>$countw</td>\n";
print OUTPUT "<td>$countt</td>\n";
print OUTPUT "<td>$countw</td>\n";
print OUTPUT "<td>$countn</td>\n";
print OUTPUT "<td>$countr</td>\n";
$index = 8;