From a4e0a8bf54e6fff720d7063204e65b61f2727ffd Mon Sep 17 00:00:00 2001 From: Alexander Mai Date: Sat, 1 Aug 2015 17:41:26 +0200 Subject: [PATCH] daca2: enable exception-handling and drop valgrind from list of skipped packages --- tools/daca2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/daca2.py b/tools/daca2.py index de3f760c6..2547c1fb8 100644 --- a/tools/daca2.py +++ b/tools/daca2.py @@ -150,10 +150,9 @@ def scanarchive(filepath, jobs): # boost #3654 (?) # flite #5975 # insight#5184 -# valgrind #6151 # - 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': results = open('results.txt', 'at') results.write('fixme: skipped package to avoid hang\n') results.close() @@ -169,6 +168,7 @@ def scanarchive(filepath, jobs): '-D__GCC__', '--enable=style', '--error-exitcode=0', + '--exception-handling', jobs, '.'], stdout=subprocess.PIPE,