From 1ea87ab656b7a6da23e05d12c478f8410f3517c1 Mon Sep 17 00:00:00 2001 From: Ihor Solodrai Date: Wed, 18 Sep 2024 11:49:16 -0700 Subject: [PATCH] run-vmtest: Fix path to test_bpftool_sinctypes.py --- run-vmtest/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-vmtest/run.sh b/run-vmtest/run.sh index 1b8b44e..b1cc175 100755 --- a/run-vmtest/run.sh +++ b/run-vmtest/run.sh @@ -14,7 +14,7 @@ if [[ "${KERNEL}" = 'LATEST' ]]; then # "&& true" does not change the return code (it is not executed if the # Python script fails), but it prevents the trap on ERR set at the top # of this file to trigger on failure. - "${REPO_ROOT}/${KERNEL_ROOT}/tools/testing/selftests/bpf/test_bpftool_synctypes.py" && true + "${KERNEL_ROOT}/tools/testing/selftests/bpf/test_bpftool_synctypes.py" && true bpftool_exitstatus=$? if [[ $bpftool_exitstatus -eq 0 ]]; then echo "bpftool checks passed successfully."