Mercurial > public > mercurial-scm > hg-stable
diff tests/run-tests.py @ 14454:243acc7111b5
run-tests: fix --blacklist (broken by 95715c2f90bf)
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sat, 28 May 2011 11:44:27 +0200 |
parents | f63b7fb4b5f6 |
children | 5cc7905bccc9 |
line wrap: on
line diff
--- 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