зеркало из https://github.com/microsoft/git.git
Merge branch 'rj/bisect-skip-honor-terms'
"git bisect skip" when custom words are used for new/old did not work, which has been corrected. * rj/bisect-skip-honor-terms: bisect--helper: use BISECT_TERMS in 'bisect skip' command
This commit is contained in:
Коммит
8ca4771dd0
|
@ -1126,6 +1126,7 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
|
|||
break;
|
||||
case BISECT_SKIP:
|
||||
set_terms(&terms, "bad", "good");
|
||||
get_terms(&terms);
|
||||
res = bisect_skip(&terms, argv, argc);
|
||||
break;
|
||||
default:
|
||||
|
|
|
@ -922,6 +922,17 @@ test_expect_success 'bisect start takes options and revs in any order' '
|
|||
test_cmp expected actual
|
||||
'
|
||||
|
||||
# Bisect is started with --term-new and --term-old arguments,
|
||||
# then skip. The HEAD should be changed.
|
||||
test_expect_success 'bisect skip works with --term*' '
|
||||
git bisect reset &&
|
||||
git bisect start --term-new=fixed --term-old=unfixed HEAD $HASH1 &&
|
||||
hash_skipped_from=$(git rev-parse --verify HEAD) &&
|
||||
git bisect skip &&
|
||||
hash_skipped_to=$(git rev-parse --verify HEAD) &&
|
||||
test "$hash_skipped_from" != "$hash_skipped_to"
|
||||
'
|
||||
|
||||
test_expect_success 'git bisect reset cleans bisection state properly' '
|
||||
git bisect reset &&
|
||||
git bisect start &&
|
||||
|
|
Загрузка…
Ссылка в новой задаче