changeset 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 af5a778f8e2e
children e5f6c6ec21b8
files tests/run-tests.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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