add QT6 version in test results

This commit is contained in:
Sébastien Loriot 2023-12-27 10:19:15 +01:00
parent caecbe29c7
commit 4942b8e918
2 changed files with 6 additions and 1 deletions

View File

@ -475,6 +475,7 @@ sub print_platform_descriptions()
<th>MPFR</th>
<th>GMP</th>
<th>QT5</th>
<th>QT6</th>
<th>LEDA</th>
<th>CXXFLAGS</th>
<th>LDFLAGS</th>

View File

@ -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,$QT4,$QT5,$QT6,$CMAKE) = ("-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","no");
my ($LDFLAGS,$CXXFLAGS) = ("", "");
while (! /^------/) {
if(/^\s*$/) {
@ -102,6 +102,9 @@ sub reformat_results($)
if (/Qt5_VERSION = '([^']+)'/) {
$QT5="$1";
}
if (/Qt6_VERSION = '([^']+)'/) {
$QT6="$1";
}
if (/BOOST_VERSION = '([^']+)'/) {
$BOOST="$1";
}
@ -148,6 +151,7 @@ $BOOST
$MPFR
$GMP
$QT5
$QT6
$LEDA_VERSION
$CXXFLAGS
$LDFLAGS