From c99b0107b25e217455022add1f5efc18e9057bda Mon Sep 17 00:00:00 2001 From: hanyoungYoo <47298930+hanyoungYoo@users.noreply.github.com> Date: Mon, 4 Oct 2021 21:14:41 +0900 Subject: [PATCH] [infra] Add different messages depending on bisection type (#6547) A printed message after bisection should be different depending on the bisection type --- infra/bisector.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/infra/bisector.py b/infra/bisector.py index 9afdc7c50..51f93c132 100644 --- a/infra/bisector.py +++ b/infra/bisector.py @@ -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