https://github.com/git/git
Raw File
Tip revision: ea56f91275c1797776f10f4ac5d65671bb4f3e8b authored by Johannes Schindelin on 11 March 2023, 16:54:15 UTC
Git 2.31.8
Tip revision: ea56f91
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

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

check_unignored_build_artifacts
back to top