git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob f757e616c9a69aa56094b23e8dbb23be8c25f3eb 518 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
 
#!/bin/sh
#
# Print output of failing tests
#

. ${0%/*}/lib-travisci.sh

# Tracing executed commands would produce too much noise in this script.
set +x

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 f757e616c ...
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/1] 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

Checking patch ci/print-test-failures.sh...
Applied patch ci/print-test-failures.sh cleanly.

index at:
100755 f757e616c9a69aa56094b23e8dbb23be8c25f3eb	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).