From a7a525d47acfe4edbaa83f2e763d6281506f5aa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 23 Aug 2022 16:18:19 -0700 Subject: [PATCH] Rename test_progs_noalu function to test_progs_no_alu32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As a follow up to 66b788c1a464 ("Factor out test_progs_noalu function") and taking into account feedback [0], this change renames the test_progs_noalu function to test_progs_no_alu32, to stay closer to the name of the binary being invoked. [0] https://github.com/kernel-patches/vmtest/pull/124#discussion_r953175641 Signed-off-by: Daniel Müller --- ci/vmtest/run_selftests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/vmtest/run_selftests.sh b/ci/vmtest/run_selftests.sh index 4ae05ed..071b19d 100755 --- a/ci/vmtest/run_selftests.sh +++ b/ci/vmtest/run_selftests.sh @@ -28,7 +28,7 @@ test_progs() { fi } -test_progs_noalu() { +test_progs_no_alu32() { foldable start test_progs-no_alu32 "Testing test_progs-no_alu32" ./test_progs-no_alu32 ${DENYLIST:+-d$DENYLIST} ${ALLOWLIST:+-a$ALLOWLIST} && true echo "test_progs-no_alu32:$?" >> "${STATUS_FILE}" @@ -66,7 +66,7 @@ cd ${PROJECT_NAME}/selftests/bpf if [ $# -eq 0 ]; then test_progs - test_progs_noalu + test_progs_no_alu32 test_maps test_verifier else