bugs.txt can select on test dir as well
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 15 Jan 2010 00:33:10 +0000 (16:33 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 15 Jan 2010 00:33:10 +0000 (16:33 -0800)
runtests.py
tests/bugs.txt

index b85874a09359d357dbdaf67e05c0fc3aa0d103f9..abfdb3120f758e4d3a1031ca761ffce401005031 100644 (file)
@@ -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
index a2a7baa9e14687ba126da21dacab50feae390e80..0659496392d23d7146519c9951468f55ff1b80ba 100644 (file)
@@ -8,4 +8,4 @@ unsignedbehaviour_T184
 missing_baseclass_in_predecl_T262
 cfunc_call_tuple_args_T408
 ifelseexpr_T267
-cpp_operators
+compile.cpp_operators