mirror of https://github.com/CGAL/cgal
Testsuite: Add DEBUG/RELEASE build type to test result page (#8478)
## Summary of Changes Add DEBUG/RELEASE build type to test result page [You can see the changes here]( https://cgal.geometryfactory.com/~nsaillant/testsuitedebugrelease/) ## Release Management * Issue(s) solved (if any): #8473
This commit is contained in:
commit
b2a09877f9
|
|
@ -472,6 +472,7 @@ sub print_platform_descriptions()
|
||||||
<th class="timeout">o</th>
|
<th class="timeout">o</th>
|
||||||
<th class="error">n</th>
|
<th class="error">n</th>
|
||||||
<th class="requirements">r</th>
|
<th class="requirements">r</th>
|
||||||
|
<th>DEBUG?</th>
|
||||||
<th>CMake</th>
|
<th>CMake</th>
|
||||||
<th>BOOST</th>
|
<th>BOOST</th>
|
||||||
<th>MPFR</th>
|
<th>MPFR</th>
|
||||||
|
|
@ -524,6 +525,7 @@ EOF
|
||||||
($platform_is_optimized{$pf}) = ($tmp[1] =~ m|([-/]x?O[1-9])|);
|
($platform_is_optimized{$pf}) = ($tmp[1] =~ m|([-/]x?O[1-9])|);
|
||||||
$_ = <PLATFORM_INFO>;
|
$_ = <PLATFORM_INFO>;
|
||||||
chomp;
|
chomp;
|
||||||
|
my $build_type = $platform_is_optimized{$pf} ? " - " : "YES";
|
||||||
print OUTPUT "</td>\n";
|
print OUTPUT "</td>\n";
|
||||||
print OUTPUT "<td><a href=\"mailto:$tester_address\">$tester_name</a></td>\n";
|
print OUTPUT "<td><a href=\"mailto:$tester_address\">$tester_name</a></td>\n";
|
||||||
print OUTPUT "<td>$county</td>\n";
|
print OUTPUT "<td>$county</td>\n";
|
||||||
|
|
@ -532,6 +534,7 @@ EOF
|
||||||
print OUTPUT "<td>$counto</td>\n";
|
print OUTPUT "<td>$counto</td>\n";
|
||||||
print OUTPUT "<td>$countn</td>\n";
|
print OUTPUT "<td>$countn</td>\n";
|
||||||
print OUTPUT "<td>$countr</td>\n";
|
print OUTPUT "<td>$countr</td>\n";
|
||||||
|
print OUTPUT "<td align=\"center\">$build_type</td>\n";
|
||||||
$index = 8;
|
$index = 8;
|
||||||
while ($index) {
|
while ($index) {
|
||||||
$index--;
|
$index--;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue