run-tests: handle mixed comment lines in blacklists
authorPatrick Mezard <pmezard@gmail.com>
Sun, 06 Mar 2011 14:19:57 +0100
changeset 13539 b3330b8e1e6f
parent 13538 d24e97fd52a9
child 13540 3ecadce9173d
run-tests: handle mixed comment lines in blacklists
tests/run-tests.py
--- 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()