From: Robert Bradshaw Date: Fri, 15 Jan 2010 00:33:10 +0000 (-0800) Subject: bugs.txt can select on test dir as well X-Git-Tag: 0.13.beta0~353^2~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5ce30f5b276ecca2d4e89b2648d90b9a14f420b2;p=cython.git bugs.txt can select on test dir as well --- 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