mirror of
https://github.com/git/git
synced 2024-11-05 01:58:18 +00:00
ci: use test-tool as unit test runner on Windows
Although the previous commit changed t/Makefile to run unit tests alongside shell tests, the Windows CI still needs a separate unit-tests step due to how the test sharding works. We want to avoid using `prove` as a test running on Windows due to performance issues [1], so use the new test-tool runner instead. [1] https://lore.kernel.org/git/850ea42c-f103-68d5-896b-9120e2628686@gmx.de/ Signed-off-by: Josh Steadmon <steadmon@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
cc75e4a08f
commit
b121eed8d5
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ handle_failed_tests
|
|||
|
||||
# We only have one unit test at the moment, so run it in the first slice
|
||||
if [ "$1" == "0" ] ; then
|
||||
group "Run unit tests" make --quiet -C t unit-tests-prove
|
||||
group "Run unit tests" make --quiet -C t unit-tests-test-tool
|
||||
fi
|
||||
|
||||
check_unignored_build_artifacts
|
||||
|
|
Loading…
Reference in a new issue