(self, path)
| 145 | |
| 146 | class TTYTestConfiguration(test.TestConfiguration): |
| 147 | def Ls(self, path): |
| 148 | if isdir(path): |
| 149 | return [f[:-3] for f in os.listdir(path) if f.endswith('.js')] |
| 150 | else: |
| 151 | return [] |
| 152 | |
| 153 | def ListTests(self, current_path, path, arch, mode): |
| 154 | all_tests = [current_path + [t] for t in self.Ls(self.root)] |