daca2: skip valgrind for now because it's extremely slow. see #6151

This commit is contained in:
Daniel Marjamäki 2014-10-11 07:54:41 +02:00
parent 5891bae59e
commit 748e3a4ba3
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def scanarchive(filepath):
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':
if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:6] == 'iceowl' or filename[:7] == 'insight' or filename[:8] == 'valgrind':
results = open('results.txt', 'at')
results.write('fixme: skipped package to avoid hang\n')
results.close()