From c735c073490229d64062d5386db0fe09dc694340 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 11 Mar 2025 16:23:03 -0700 Subject: [PATCH] tests/integration/selinux: collect user_avc as well Signed-off-by: Kir Kolyshkin --- tests/integration/selinux.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/selinux.bats b/tests/integration/selinux.bats index 53a3ea728..f01f2c679 100644 --- a/tests/integration/selinux.bats +++ b/tests/integration/selinux.bats @@ -27,7 +27,7 @@ function teardown() { teardown_bundle # Show any avc denials. if [[ -v AU_DD && -v AU_TT ]] && command -v ausearch &>/dev/null; then - ausearch -ts "$AU_DD" "$AU_TT" -i -m avc || true + ausearch -ts "$AU_DD" "$AU_TT" -i -m avc,user_avc || true fi }