1
0
mirror of https://github.com/git/git synced 2024-06-30 22:54:27 +00:00

ci: handle TEST_OUTPUT_DIRECTORY when printing test failures

The TEST_OUTPUT_DIRECTORY environment variable can be used to instruct
the test suite to write test data and test results into a different
location than into "t/". The "ci/print-test-failures.sh" script does not
know to handle this environment variable though, which means that it
will search for test results in the wrong location if it was set.

Update the script to handle TEST_OUTPUT_DIRECTORY so that we can start
to set it in our CI.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Patrick Steinhardt 2024-01-18 11:22:53 +01:00 committed by Junio C Hamano
parent d52b426ad4
commit 99c60edc5b

View File

@ -8,7 +8,7 @@
# Tracing executed commands would produce too much noise in the loop below.
set +x
cd t/
cd "${TEST_OUTPUT_DIRECTORY:-t/}"
if ! ls test-results/*.exit >/dev/null 2>/dev/null
then