# HG changeset patch # User Patrick Mezard # Date 1306575867 -7200 # Node ID 243acc7111b56701019433a69748983ad6879b69 # Parent ea3d548132cc7b115483c93f794057addfffdb50 run-tests: fix --blacklist (broken by 95715c2f90bf) diff -r ea3d548132cc -r 243acc7111b5 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