From 88e3f6f78c7849b9dcd8aca574ef9c5344a5aa11 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Mon, 4 Mar 2019 15:51:35 +1100 Subject: [PATCH] wscript: add slowdown and timeout to coverage autotest commandline The optimisation / compiler flags required slow things down somewhat --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index a0fe1001e1..ba0129b7d5 100644 --- a/wscript +++ b/wscript @@ -224,7 +224,7 @@ def run_coverage_tests(bld): for test in tests: print("LCOV/GCOV -> "+test+" started.... this will take quite some time...") - testcmd = '( ./Tools/autotest/autotest.py --debug --no-configure '+test+' ) ' + testcmd = '( ./Tools/autotest/autotest.py --speedup=5 --timeout=14400 --debug --no-configure '+test+' ) ' print("Coverage Tests Executing:"+testcmd+" > ./GCOV_"+test+".log") FLOG = open("./GCOV_"+test+".log", 'w') if subprocess.Popen(testcmd, shell=True , stdout=FLOG, stderr=FNULL).wait():