https://github.com/git/git
Raw File
Tip revision: 0d464a4e6a5a19bd8fbea1deae22d48d14dccb01 authored by Junio C Hamano on 23 February 2024, 00:13:38 UTC
Git 2.43.3
Tip revision: 0d464a4
run-test-slice.sh
#!/bin/sh
#
# Test Git in parallel
#

. ${0%/*}/lib.sh

case "$CI_OS_NAME" in
windows*) cmd //c mklink //j t\\.prove "$(cygpath -aw "$cache_dir/.prove")";;
*) ln -s "$cache_dir/.prove" t/.prove;;
esac

group "Run tests" make --quiet -C t T="$(cd t &&
	./helper/test-tool path-utils slice-tests "$1" "$2" t[0-9]*.sh |
	tr '\n' ' ')" ||
handle_failed_tests

check_unignored_build_artifacts
back to top