From b8224edaac46b90edd2b953938a2f753c03bd540 Mon Sep 17 00:00:00 2001 From: Alexander Mai Date: Sat, 15 Nov 2014 12:10:18 +0100 Subject: [PATCH] Remove iceowl from list of skipped packages. Document the remaining skipped packages with a reference to accoding trac ticket --- tools/daca2.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tools/daca2.py b/tools/daca2.py index 7d8756bfd..74612f019 100644 --- a/tools/daca2.py +++ b/tools/daca2.py @@ -144,7 +144,16 @@ def scanarchive(filepath, jobs): elif filename[-4:] == '.bz2': subprocess.call(['tar', 'xjvf', filename]) - if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:6] == 'iceowl' or filename[:7] == 'insight' or filename[:8] == 'valgrind': +# +# 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 +# valgrind #6151 +# + + if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:7] == 'insight' or filename[:8] == 'valgrind': results = open('results.txt', 'at') results.write('fixme: skipped package to avoid hang\n') results.close()