projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0971ec0
)
d/run-tests.sh: Show full test log after testing
author
Simon McVittie
<smcv@debian.org>
Wed, 16 Feb 2022 12:42:10 +0000
(12:42 +0000)
committer
Simon McVittie
<smcv@debian.org>
Wed, 16 Feb 2022 12:42:10 +0000
(12:42 +0000)
debian/run-tests.sh
patch
|
blob
|
history
diff --git
a/debian/run-tests.sh
b/debian/run-tests.sh
index 75eac128cf0db23db2a21dcddf59c67222d16d8d..751ae77565032594096c8b8aa44383f0489fcfe5 100755
(executable)
--- a/
debian/run-tests.sh
+++ b/
debian/run-tests.sh
@@
-67,8
+67,14
@@
for reftest in $XFAIL_REFTESTS; do
rm -f "$BUILDDIR/testsuite/reftests/output/$BACKEND/$reftest.diff.png"
done
+if [ -e "$test_data/tests-failed" ]; then
+ head -v -n-0 "$BUILDDIR/meson-logs/testlog-$BACKEND.txt"
+fi
+
# Put the rest in the log as base64 since we don't have an
# equivalent of AUTOPKGTEST_ARTIFACTS for buildds
debian/log-reftests.py
-[ -e "$test_data/tests-failed" ] && exit 1 || exit 0
+if [ -e "$test_data/tests-failed" ]; then
+ exit 1
+fi