##// END OF EJS Templates
run-tests: blacklist entries are bytes, use bname to check blacklisting
Augie Fackler -
r25055:d79258e3 default
parent child Browse files
Show More
@@ -1400,7 +1400,7 b' class TestSuite(unittest.TestSuite):'
1400 continue
1400 continue
1401
1401
1402 if not (self._whitelist and test.name in self._whitelist):
1402 if not (self._whitelist and test.name in self._whitelist):
1403 if self._blacklist and test.name in self._blacklist:
1403 if self._blacklist and test.bname in self._blacklist:
1404 result.addSkip(test, 'blacklisted')
1404 result.addSkip(test, 'blacklisted')
1405 continue
1405 continue
1406
1406
General Comments 0
You need to be logged in to leave comments. Login now