diff tests/run-tests.py @ 25055:d79258e30499

run-tests: blacklist entries are bytes, use bname to check blacklisting
author Augie Fackler <augie@google.com>
date Mon, 13 Apr 2015 17:17:17 -0400
parents 4f2c74ef8128
children e5f6c6ec21b8
line wrap: on
line diff
--- 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