From 5ce30f5b276ecca2d4e89b2648d90b9a14f420b2 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 14 Jan 2010 16:33:10 -0800 Subject: [PATCH] bugs.txt can select on test dir as well --- runtests.py | 2 +- tests/bugs.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtests.py b/runtests.py index b85874a0..abfdb312 100644 --- a/runtests.py +++ b/runtests.py @@ -646,7 +646,7 @@ class FileListExcluder: self.excludes[line.split()[0]] = True 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__': from optparse import OptionParser diff --git a/tests/bugs.txt b/tests/bugs.txt index a2a7baa9..06594963 100644 --- a/tests/bugs.txt +++ b/tests/bugs.txt @@ -8,4 +8,4 @@ unsignedbehaviour_T184 missing_baseclass_in_predecl_T262 cfunc_call_tuple_args_T408 ifelseexpr_T267 -cpp_operators +compile.cpp_operators -- 2.26.2