Daca2: don't skip flite anymore. Analysis without MAXTIME is still very slow.

This commit is contained in:
Daniel Marjamäki 2016-02-11 16:16:09 +01:00
parent cef6b35bb8
commit 087b233ffd
1 changed files with 1 additions and 2 deletions

View File

@ -150,11 +150,10 @@ def scanarchive(filepath, jobs):
# List of skipped packages - which trigger known yet unresolved problems with cppcheck.
# The issues on trac (http://trac.cppcheck.net) are given for reference
# boost #3654 (?)
# flite #5975
# insight#5184
#
if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:7] == 'insight':
if filename[:5] == 'boost' or filename[:7] == 'insight':
results = open('results.txt', 'at')
results.write('fixme: skipped package to avoid hang\n')
results.close()