Skip to content

Commit

Permalink
do_regtest: Move to Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed Oct 18, 2020
1 parent 0700962 commit d11024a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/regtesting/do_regtest
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ EOF
if (( n_leaks > 0 )); then
REPORT_SUMMARY+=$(printf "; memleaks: %d" ${n_leaks})
fi
REPORT_SUMMARY+=$(python -c "print('; %.0fmin'%(${full_timing_all}/60.0))")
REPORT_SUMMARY+=$(python3 -c "print('; %.0fmin'%(${full_timing_all}/60.0))")
echo -e "\nSummary: ${REPORT_SUMMARY}"

if ((n_wrong_results > 0)) || ((n_runtime_error > 0)) || ((n_leaks > 0)); then
Expand Down

0 comments on commit d11024a

Please sign in to comment.