diff -r 0b9f0c42b566 -r c3681742c0c7 tests/run-tests.py --- a/tests/run-tests.py Fri Dec 24 15:23:01 2010 +0100 +++ b/tests/run-tests.py Sun Mar 06 14:19:57 2011 +0100 @@ -227,8 +227,8 @@ continue for line in f.readlines(): - line = line.strip() - if line and not line.startswith('#'): + line = line.split('#', 1)[0].strip() + if line: blacklist[line] = filename f.close()