run-tests: fix --blacklist (broken by 95715c2f90bf) stable
authorPatrick Mezard <pmezard@gmail.com>
Sat, 28 May 2011 11:44:27 +0200
branchstable
changeset 960 d1f0b4802c19
parent 958 e763012a55e5
child 961 ad2d66fd14ee
child 962 b5a4f9f5ec49
run-tests: fix --blacklist (broken by 95715c2f90bf) [ original upstream message ]
tests/run-tests.py
--- a/tests/run-tests.py	Fri May 27 21:50:10 2011 +0200
+++ b/tests/run-tests.py	Sat May 28 11:44:27 2011 +0200
@@ -733,7 +733,7 @@
     else:
         return None # not a supported test, don't record
 
-    if options.blacklist and filename in options.blacklist:
+    if options.blacklist and test in options.blacklist:
         skip("blacklisted")
         return None