diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-05-15 18:52:52 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-05-15 18:52:52 +0200 |
commit | b7a1d47ba5dd0df476104a63c6ddffe2d52fccf8 (patch) | |
tree | c08317ab5a0357b8b0252ec483132740ed4402e4 /ci/run-build-and-tests.sh | |
parent | Sync with Git 2.45.1 (diff) | |
parent | cmake: let `test-tool` run the unit tests, too (diff) | |
download | git-b7a1d47ba5dd0df476104a63c6ddffe2d52fccf8.tar.xz git-b7a1d47ba5dd0df476104a63c6ddffe2d52fccf8.zip |
Merge branch 'js/unit-test-suite-runner'
The "test-tool" has been taught to run testsuite tests in parallel,
bypassing the need to use the "prove" tool.
* js/unit-test-suite-runner:
cmake: let `test-tool` run the unit tests, too
ci: use test-tool as unit test runner on Windows
t/Makefile: run unit tests alongside shell tests
unit tests: add rule for running with test-tool
test-tool run-command testsuite: support unit tests
test-tool run-command testsuite: remove hardcoded filter
test-tool run-command testsuite: get shell from env
t0080: turn t-basic unit test into a helper
Diffstat (limited to 'ci/run-build-and-tests.sh')
-rwxr-xr-x | ci/run-build-and-tests.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ci/run-build-and-tests.sh b/ci/run-build-and-tests.sh index c192bd613c..98dda42045 100755 --- a/ci/run-build-and-tests.sh +++ b/ci/run-build-and-tests.sh @@ -53,8 +53,6 @@ if test -n "$run_tests" then group "Run tests" make test || handle_failed_tests - group "Run unit tests" \ - make DEFAULT_UNIT_TEST_TARGET=unit-tests-prove unit-tests fi check_unignored_build_artifacts |