run-tests: blacklist entries are bytes, use bname to check blacklisting
authorAugie Fackler <augie@google.com>
Mon, 13 Apr 2015 17:17:17 -0400
changeset 25055 d79258e30499
parent 25054 af5a778f8e2e
child 25056 e5f6c6ec21b8
run-tests: blacklist entries are bytes, use bname to check blacklisting
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