Lines Matching refs:test_command
64 def test_commit(self, test_command): argument
70 retcode, _, _ = execute(test_command, shell=True, expect_zero=False)
77 def bisect(self, good_commit, bad_commit, test_command): argument
80 self.bisect_start(good_commit, bad_commit, test_command)
81 result = self.test_commit(test_command)
83 result = self.test_commit(test_command)
86 def bisect_start(self, good_commit, bad_commit, test_command): argument
90 self.test_start_commit(bad_commit, 'bad', test_command)
91 self.test_start_commit(good_commit, 'good', test_command)
97 def test_start_commit(self, commit, label, test_command): argument
103 retcode, _, _ = execute(test_command, shell=True, expect_zero=False)
106 (test_command, retcode, commit))
109 (test_command, retcode, commit))
189 def find_culprit_commit(test_command, good_commit, bad_commit): argument
197 result = git_repo.bisect(good_commit, bad_commit, test_command)
214 test_command = sys.argv[1]
222 find_culprit_commit(test_command, good_commit, bad_commit)