(self, path)
| 126 | |
| 127 | class MessageTestConfiguration(test.TestConfiguration): |
| 128 | def Ls(self, path): |
| 129 | if isdir(path): |
| 130 | return [f for f in os.listdir(path) |
| 131 | if f.endswith('.js') or f.endswith('.mjs')] |
| 132 | else: |
| 133 | return [] |
| 134 | |
| 135 | def ListTests(self, current_path, path, arch, mode): |
| 136 | all_tests = [current_path + [t] for t in self.Ls(self.root)] |