Home
last modified time | relevance | path

Searched refs:oldest_commit (Results 1 – 1 of 1) sorted by relevance

/external/oss-fuzz/infra/
Drepo_manager.py138 def get_commit_list(self, newest_commit, oldest_commit=None): argument
153 if oldest_commit and not self.commit_exists(oldest_commit):
154 raise ValueError('The oldest commit %s does not exist' % oldest_commit)
157 if oldest_commit == newest_commit:
158 return [oldest_commit]
160 if oldest_commit:
161 commit_range = oldest_commit + '..' + newest_commit
170 (oldest_commit, newest_commit))
173 if oldest_commit:
174 commits.append(oldest_commit)