1#!/bin/sh
2#
3# Test Git in parallel
4#
56
. ${0%/*}/lib.sh
78
case "$CI_OS_NAME" in
9windows*) cmd //c mklink //j t\\.prove "$(cygpath -aw "$cache_dir/.prove")";;
10*) ln -s "$cache_dir/.prove" t/.prove;;
11esac
1213
make --quiet -C t T="$(cd t &&
14./helper/test-tool path-utils slice-tests "$1" "$2" t[0-9]*.sh |
15tr '\n' ' ')"
1617
check_unignored_build_artifacts