Skip to content

Commit 01b9570

Browse files
committed
tetragon: Skip v6.0 bpf object in verify.sh
The check is not likely to happen on v6.x kernel. Signed-off-by: Jiri Olsa <[email protected]>
1 parent bbe9f95 commit 01b9570

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

contrib/verify/verify.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ for obj in "$TETRAGONDIR"/*.o; do
6262
continue
6363
fi
6464

65+
# skip v6.0 objects check, because it is still not widely around
66+
if [[ "$B" == *60.o ]]; then
67+
continue
68+
fi
69+
6570
echo -e -n "Verifying $BLUEUNDER$obj$NOCOLOR... "
6671
OUT="/tmp/tetragon-verify-$B"
6772

0 commit comments

Comments
 (0)