run-tests: fix --blacklist (broken by 95715c2f90bf)
authorPatrick Mezard <pmezard@gmail.com>
Sat, 28 May 2011 11:44:27 +0200
changeset 14454 243acc7111b5
parent 14453 ea3d548132cc
child 14455 59853c30e31e
run-tests: fix --blacklist (broken by 95715c2f90bf)
tests/run-tests.py
--- a/tests/run-tests.py	Fri May 27 21:50:11 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