From 0442764467dda190f59f5735a60e09bfa33819cb Mon Sep 17 00:00:00 2001 From: Alexander Mai Date: Mon, 25 Apr 2016 20:48:11 +0200 Subject: [PATCH] Skip another package in daca2 (gcc-arm) to avoid timeouts --- tools/daca2-addons.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/daca2-addons.py b/tools/daca2-addons.py index 3b0967884..3c3953c03 100644 --- a/tools/daca2-addons.py +++ b/tools/daca2-addons.py @@ -163,9 +163,10 @@ def scanarchive(filepath, jobs): # flite #5975 # insight#5184 # valgrind #6151 +# gcc-arm - no ticket. Reproducible timeout in daca2 though as of 1.73/early 2016. # - if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:7] == 'insight' or filename[:8] == 'valgrind': + if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:7] == 'insight' or filename[:8] == 'valgrind' or filename[:7] == 'gcc-arm': results = open('results.txt', 'at') results.write('fixme: skipped package to avoid hang\n') results.close()