aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Steadmon <steadmon@google.com>2024-04-30 12:55:57 -0700
committerJunio C Hamano <gitster@pobox.com>2024-04-30 13:24:02 -0700
commit0cfe49f96b171be78f53620965b1dbcf448f924c (patch)
treee9d4c044793991f8e98add368a58a47aa8fd32d7
parenta956682c43867da813b668f32c87686f693bd5dc (diff)
downloadgit-0cfe49f96b171be78f53620965b1dbcf448f924c.tar.gz
ci: use test-tool as unit test runner on Windows
Notice: this object is not reachable from any branch.
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>
Notice: this object is not reachable from any branch.
-rwxr-xr-xci/run-test-slice.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/run-test-slice.sh b/ci/run-test-slice.sh
index ae8094382f..e167e646f7 100755
--- a/ci/run-test-slice.sh
+++ b/ci/run-test-slice.sh
@@ -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