Skip another package in daca2 (gcc-arm) to avoid timeouts

This commit is contained in:
Alexander Mai 2016-04-25 20:48:11 +02:00
parent a54ec615f3
commit 0442764467
1 changed files with 2 additions and 1 deletions

View File

@ -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()