Commit 5ce30f5b authored by Robert Bradshaw's avatar Robert Bradshaw

bugs.txt can select on test dir as well

parent 2bc8d9cb
...@@ -646,7 +646,7 @@ class FileListExcluder: ...@@ -646,7 +646,7 @@ class FileListExcluder:
self.excludes[line.split()[0]] = True self.excludes[line.split()[0]] = True
def __call__(self, testname): def __call__(self, testname):
return testname.split('.')[-1] in self.excludes return testname in self.excludes or testname.split('.')[-1] in self.excludes
if __name__ == '__main__': if __name__ == '__main__':
from optparse import OptionParser from optparse import OptionParser
......
...@@ -8,4 +8,4 @@ unsignedbehaviour_T184 ...@@ -8,4 +8,4 @@ unsignedbehaviour_T184
missing_baseclass_in_predecl_T262 missing_baseclass_in_predecl_T262
cfunc_call_tuple_args_T408 cfunc_call_tuple_args_T408
ifelseexpr_T267 ifelseexpr_T267
cpp_operators compile.cpp_operators
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment