# HG changeset patch # User Augie Fackler # Date 1505794071 14400 # Node ID cd2ee4db8f9591c60a46c77fc0c82812268e3a05 # Parent df1c290df0349dfc400ab089bccef7adee96e7b2 tests: fix test-is-whitelisted check in run-tests Again, look for bytes in a set of bytes objects. diff -r df1c290df034 -r cd2ee4db8f95 tests/run-tests.py --- a/tests/run-tests.py Tue Sep 19 00:07:23 2017 -0400 +++ b/tests/run-tests.py Tue Sep 19 00:07:51 2017 -0400 @@ -1853,7 +1853,7 @@ result.addSkip(test, "Doesn't exist") continue - if not (self._whitelist and test.name in self._whitelist): + if not (self._whitelist and test.bname in self._whitelist): if self._blacklist and test.bname in self._blacklist: result.addSkip(test, 'blacklisted') continue