Mercurial > hg-stable
changeset 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 | ea3d548132cc |
children | 59853c30e31e |
files | tests/run-tests.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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