diff tests/run-tests.py @ 13539:b3330b8e1e6f

run-tests: handle mixed comment lines in blacklists
author Patrick Mezard <pmezard@gmail.com>
date Sun, 06 Mar 2011 14:19:57 +0100
parents 14f3795a5ed7
children 8ed67e44c71c
line wrap: on
line diff
--- a/tests/run-tests.py	Sun Mar 06 14:17:47 2011 +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()