(self, files)
| 743 | return ['test', 'tools/testrunner'] |
| 744 | |
| 745 | def ProcessFiles(self, files): |
| 746 | success = True |
| 747 | for status_file_path in sorted(self._GetStatusFiles(files)): |
| 748 | success &= statusfile.PresubmitCheck(status_file_path) |
| 749 | success &= _CheckStatusFileForDuplicateKeys(status_file_path) |
| 750 | return success |
| 751 | |
| 752 | def _GetStatusFiles(self, files): |
| 753 | test_path = join(dirname(TOOLS_PATH), 'test') |
nothing calls this directly
no test coverage detected