Skip to content

Commit

Permalink
Testsuite: Add DEBUG/RELEASE build type to test result page (#8478)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
lrineau authored Sep 20, 2024
2 parents 3236c2a + 021eeb6 commit b2a0987
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Maintenance/test_handling/create_testresult_page
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@ sub print_platform_descriptions()
<th class="timeout">o</th>
<th class="error">n</th>
<th class="requirements">r</th>
<th>DEBUG?</th>
<th>CMake</th>
<th>BOOST</th>
<th>MPFR</th>
Expand Down Expand Up @@ -524,6 +525,7 @@ EOF
($platform_is_optimized{$pf}) = ($tmp[1] =~ m|([-/]x?O[1-9])|);
$_ = <PLATFORM_INFO>;
chomp;
my $build_type = $platform_is_optimized{$pf} ? " - " : "YES";
print OUTPUT "</td>\n";
print OUTPUT "<td><a href=\"mailto:$tester_address\">$tester_name</a></td>\n";
print OUTPUT "<td>$county</td>\n";
Expand All @@ -532,6 +534,7 @@ EOF
print OUTPUT "<td>$counto</td>\n";
print OUTPUT "<td>$countn</td>\n";
print OUTPUT "<td>$countr</td>\n";
print OUTPUT "<td align=\"center\">$build_type</td>\n";
$index = 8;
while ($index) {
$index--;
Expand Down

0 comments on commit b2a0987

Please sign in to comment.