commit c1e86b1d5bb299f6bcc93a8024575a12da339286 from: Stefan Sperling date: Fri Oct 08 11:53:05 2021 UTC add an xfail test for a bug in merging content with a dot on a line by itself commit - 09209b8a13411e9d8464267c5e65c2c848455496 commit + c1e86b1d5bb299f6bcc93a8024575a12da339286 blob - e75e24e3911844ab65c99352267aa5df1c5a4f3d blob + fdd6d5c983d568d8d1d4b48e66ec1d1400a5abea --- regress/cmdline/cherrypick.sh +++ regress/cmdline/cherrypick.sh @@ -1424,7 +1424,45 @@ test_cherrypick_same_branch() { test_done "$testroot" "$ret" } +test_cherrypick_dot_on_a_line_by_itself() { + local testroot=`test_init cherrypick_dot_on_a_line_by_itself` + got checkout $testroot/repo $testroot/wt > /dev/null + ret="$?" + if [ "$ret" != "0" ]; then + test_done "$testroot" "$ret" + return 1 + fi + + (cd $testroot/repo && git checkout -q -b newbranch) + printf "modified\ndelta\n.\non\nbranch\n" > $testroot/repo/gamma/delta + git_commit $testroot/repo -m "committing to delta on newbranch" + local branch_rev=`git_show_head $testroot/repo` + + (cd $testroot/wt && got cherrypick newbranch > $testroot/stdout) + + echo "G gamma/delta" >> $testroot/stdout.expected + echo "Merged commit $branch_rev" >> $testroot/stdout.expected + + cmp -s $testroot/stdout.expected $testroot/stdout + ret="$?" + if [ "$ret" != "0" ]; then + diff -u $testroot/stdout.expected $testroot/stdout + test_done "$testroot" "$ret" + return 1 + fi + + printf "modified\ndelta\n.\non\nbranch\n" > $testroot/content.expected + cat $testroot/wt/gamma/delta > $testroot/content + cmp -s $testroot/content.expected $testroot/content + ret="$?" + if [ "$ret" != "0" ]; then + #diff -u $testroot/content.expected $testroot/content + ret="xfail (badly merged content)" + fi + test_done "$testroot" "$ret" +} + test_parseargs "$@" run_test test_cherrypick_basic run_test test_cherrypick_root_commit @@ -1440,3 +1478,4 @@ run_test test_cherrypick_conflict_no_eol run_test test_cherrypick_conflict_no_eol2 run_test test_cherrypick_unrelated_changes run_test test_cherrypick_same_branch +run_test test_cherrypick_dot_on_a_line_by_itself