Skip to content

Commit

Permalink
display Qt6 version in the test results page
Browse files Browse the repository at this point in the history
  • Loading branch information
lrineau committed Dec 7, 2023
1 parent 31d66c3 commit ad8ad2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Maintenance/test_handling/create_testresult_page
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ sub print_platform_descriptions()
<th>BOOST</th>
<th>MPFR</th>
<th>GMP</th>
<th>QT5</th>
<th>QT</th>
<th>LEDA</th>
<th>CXXFLAGS</th>
<th>LDFLAGS</th>
Expand Down
11 changes: 7 additions & 4 deletions Maintenance/test_handling/to_zipped_format
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ sub reformat_results($)
$_ = $line;
open (PLATFORM_INFO,">${platform}.info") or return;
open (PLATFORM_NEW_RESULTS,">${platform}.new_results") or return;
my ($CGAL_VERSION,$LEDA_VERSION,$COMPILER,$TESTER_NAME,$TESTER_ADDRESS,$GMP,$MPFR,$ZLIB,$OPENGL,$BOOST,$QT,$QT4,$QT5,$CMAKE) = ("-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","no");
my ($CGAL_VERSION,$LEDA_VERSION,$COMPILER,$TESTER_NAME,$TESTER_ADDRESS,$GMP,$MPFR,$ZLIB,$OPENGL,$BOOST,$QT,$CMAKE) = ("-","-","-","-","-","-","-","-","-","-","-","-","-","no");
my ($LDFLAGS,$CXXFLAGS) = ("", "");
while (! /^------/) {
if(/^\s*$/) {
Expand Down Expand Up @@ -97,10 +97,13 @@ sub reformat_results($)
$QT="$1";
}
if (/QT4_VERSION = '([^']+)'/) {
$QT4="$1";
$QT="$1";
}
if (/Qt5_VERSION = '([^']+)'/) {
$QT5="$1";
$QT="$1";
}
if (/Qt6_VERSION = '([^']+)'/) {
$QT="$1";
}
if (/BOOST_VERSION = '([^']+)'/) {
$BOOST="$1";
Expand Down Expand Up @@ -147,7 +150,7 @@ $CMAKE
$BOOST
$MPFR
$GMP
$QT5
$QT
$LEDA_VERSION
$CXXFLAGS
$LDFLAGS
Expand Down

0 comments on commit ad8ad2d

Please sign in to comment.