# HG changeset patch # User Augie Fackler # Date 1428959837 14400 # Node ID d79258e30499139a4a521b629d75e53a1ba716dd # Parent af5a778f8e2ebb8f0eaab91311894abe49215ebe run-tests: blacklist entries are bytes, use bname to check blacklisting diff -r af5a778f8e2e -r d79258e30499 tests/run-tests.py --- a/tests/run-tests.py Mon Apr 13 16:37:53 2015 -0400 +++ b/tests/run-tests.py Mon Apr 13 17:17:17 2015 -0400 @@ -1400,7 +1400,7 @@ continue if not (self._whitelist and test.name in self._whitelist): - if self._blacklist and test.name in self._blacklist: + if self._blacklist and test.bname in self._blacklist: result.addSkip(test, 'blacklisted') continue