blob 1a3d74d47b54d0f89c56e9c670b44a397cfdad20 651 bytes (raw)
name: ci/print-test-failures.sh # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| | #!/bin/sh
#
# Print output of failing tests
#
. ${0%/*}/lib-travisci.sh
# Tracing executed commands would produce too much noise in this script.
set +x
if test t/test-results/*.exit = "t/test-results/*.exit"
then
echo "Build job failed before the tests could have been run"
exit
fi
for TEST_EXIT in t/test-results/*.exit
do
if [ "$(cat "$TEST_EXIT")" != "0" ]
then
TEST_OUT="${TEST_EXIT%exit}out"
echo "------------------------------------------------------------------------"
echo "$(tput setaf 1)${TEST_OUT}...$(tput sgr0)"
echo "------------------------------------------------------------------------"
cat "${TEST_OUT}"
fi
done
|
debug log:
solving 1a3d74d47 ...
found 1a3d74d47 in https://public-inbox.org/git/20171216125819.11263-1-szeder.dev@gmail.com/
found f757e616c in https://public-inbox.org/git/20171216125418.10743-2-szeder.dev@gmail.com/
found 8c8973cbf in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100755 8c8973cbf365ed18c1a20b81ec2bcd4a873f62b7 ci/print-test-failures.sh
applying [1/2] https://public-inbox.org/git/20171216125418.10743-2-szeder.dev@gmail.com/
diff --git a/ci/print-test-failures.sh b/ci/print-test-failures.sh
index 8c8973cbf..f757e616c 100755
applying [2/2] https://public-inbox.org/git/20171216125819.11263-1-szeder.dev@gmail.com/
diff --git a/ci/print-test-failures.sh b/ci/print-test-failures.sh
index f757e616c..1a3d74d47 100755
Checking patch ci/print-test-failures.sh...
Applied patch ci/print-test-failures.sh cleanly.
Checking patch ci/print-test-failures.sh...
Applied patch ci/print-test-failures.sh cleanly.
index at:
100755 1a3d74d47b54d0f89c56e9c670b44a397cfdad20 ci/print-test-failures.sh
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).