From d700dcf16228d80ab388c8f0c664abeb96f29ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 9 Aug 2022 10:36:36 -0700 Subject: [PATCH] Print allow and denylists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We should include the deny and allow lists used somewhere in the output of our CI runs in order to improve debuggability in general. With this change we print out these lists once assembled. Signed-off-by: Daniel Müller --- travis-ci/vmtest/run_selftests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/travis-ci/vmtest/run_selftests.sh b/travis-ci/vmtest/run_selftests.sh index 324ef31..0561d66 100755 --- a/travis-ci/vmtest/run_selftests.sh +++ b/travis-ci/vmtest/run_selftests.sh @@ -59,6 +59,9 @@ configs_path=${PROJECT_NAME}/vmtest/configs DENYLIST=$(read_lists "$configs_path/DENYLIST-${KERNEL}" "$configs_path/DENYLIST-${KERNEL}.${ARCH}") ALLOWLIST=$(read_lists "$configs_path/ALLOWLIST-${KERNEL}" "$configs_path/ALLOWLIST-${KERNEL}.${ARCH}") +echo "DENYLIST: ${DENYLIST}" +echo "ALLOWLIST: ${ALLOWLIST}" + cd ${PROJECT_NAME}/selftests/bpf test_progs