[infra] Add different messages depending on bisection type (#6547)

A printed message after bisection should be different depending on the bisection type
This commit is contained in:
hanyoungYoo 2021-10-04 21:14:41 +09:00 committed by GitHub
parent 67b90b57ab
commit c99b0107b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -115,7 +115,10 @@ def main():
'Bisection Error: Both the first and the last commits in'
'the given range have the same behavior, bisection is not possible. ')
return 1
print('Error was introduced at commit %s' % result.commit)
if args.type == 'regressed':
print('Error was introduced at commit %s' % result.commit)
elif args.type == 'fixed':
print('Error was fixed at commit %s' % result.commit)
return 0