(self, path)
| 136 | self.additional_flags = [] |
| 137 | |
| 138 | def Ls(self, path): |
| 139 | return [f for f in os.listdir(path) if LS_RE.match(f)] |
| 140 | |
| 141 | def ListTests(self, current_path, path, arch, mode): |
| 142 | all_tests = [current_path + [t] for t in self.Ls(os.path.join(self.root))] |