Because the Julienne test suite itself executes quickly, this issue is easier to demonstrate with a test suite that runs a bit longer:
git clone -b quadrature https://github.com/rouson/mole
cd mole
fpm test --compiler flang-new --flag -O3 -- --test command_line_t --type
which seems to take less than a second on the wall clock but reports something longer:
Test-suite run time: 5.59E+00 seconds
Most likely, this is just a formatting issue. The result are printed in engineering notation, but the reported unit seconds is hardwired in the code. Presumably this can be fixed by just switching to different formatting -- hopefully as simple as g0 formatting.
Because the Julienne test suite itself executes quickly, this issue is easier to demonstrate with a test suite that runs a bit longer:
which seems to take less than a second on the wall clock but reports something longer:
Most likely, this is just a formatting issue. The result are printed in engineering notation, but the reported unit
secondsis hardwired in the code. Presumably this can be fixed by just switching to different formatting -- hopefully as simple asg0formatting.