https://github.com/git/git
Raw File
Tip revision: 668f2d53613ac8fd373926ebe219f2c29112d93e authored by Taylor Blau on 14 April 2023, 15:54:08 UTC
Git 2.30.9
Tip revision: 668f2d5
lib-merge.sh
# Helper functions used by merge tests.

test_expect_merge_algorithm () {
	status_for_recursive=$1 status_for_ort=$2
	shift 2

	if test "$GIT_TEST_MERGE_ALGORITHM" = ort
	then
		test_expect_${status_for_ort} "$@"
	else
		test_expect_${status_for_recursive} "$@"
	fi
}
back to top