Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update support test for aarch64 bpf trampoline support
6.5 and later support bpf trampoline for aarch64; update test

Signed-off-by: Alan Maguire <[email protected]>
  • Loading branch information
alan-maguire committed Sep 1, 2023
commit 0bf28f66f72e4b060ac7f521f97bebbd77d154fc
8 changes: 8 additions & 0 deletions test/support_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ if [[ $MAJ_KVER -gt 4 ]]; then
fi
fi
;;
6)
expected_netns="supports per-netns policy"
if [[ "$ARCH" == "x86_64" ]]; then
expected="bpftune works fully"
elif [[ $MIN_KVER -gt 4 ]]; then
expected="bpftune works fully"
fi
;;
*)
expected_netns="supports per-netns policy"
if [[ "$ARCH" == "x86_64" ]]; then
Expand Down