1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Christian_G=C3=B6ttsche?= <cgzones@googlemail.com>
Date: Tue, 8 Apr 2025 15:24:25 +0200
Subject: tests: dump valgrind output so it is shown on failure
Investigate armhf buildd failure.
---
tests/functional/end-to-end.bats | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/functional/end-to-end.bats b/tests/functional/end-to-end.bats
index 5d398f9..b0db359 100644
--- a/tests/functional/end-to-end.bats
+++ b/tests/functional/end-to-end.bats
@@ -381,6 +381,7 @@ test_report_format_impl() {
fi
run valgrind --leak-check=full --show-leak-kinds=all --errors-for-leak-kinds=all --error-exitcode=1 ${SELINT_PATH} -c configs/default.conf -r -s policies/check_triggers
+ echo $output
[ "$status" -eq 0 ]
}
|