selftests/bpf: Use kselftest skip code for skipped tests
authorPo-Hsu Lin <po-hsu.lin@canonical.com>
Wed, 29 Sep 2021 05:12:50 +0000 (13:12 +0800)
committerDaniel Borkmann <daniel@iogearbox.net>
Thu, 30 Sep 2021 21:09:17 +0000 (23:09 +0200)
There are several test cases in the bpf directory are still using
exit 0 when they need to be skipped. Use kselftest framework skip
code instead so it can help us to distinguish the return status.

Criterion to filter out what should be fixed in bpf directory:
  grep -r "exit 0" -B1 | grep -i skip

This change might cause some false-positives if people are running
these test scripts directly and only checking their return codes,
which will change from 0 to 4. However I think the impact should be
small as most of our scripts here are already using this skip code.
And there will be no such issue if running them with the kselftest
framework.

Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20210929051250.13831-1-po-hsu.lin@canonical.com
tools/testing/selftests/bpf/test_xdp_meta.sh
tools/testing/selftests/bpf/test_xdp_vlan.sh

index 637fcf4fe4e30ae94a0db979eda3b447f983abbd..d10cefd6eb09455b9a378f2b5ca68b5d5405eb26 100755 (executable)
@@ -1,5 +1,8 @@
 #!/bin/sh
 
+# Kselftest framework requirement - SKIP code is 4.
+readonly KSFT_SKIP=4
+
 cleanup()
 {
        if [ "$?" = "0" ]; then
@@ -17,7 +20,7 @@ cleanup()
 ip link set dev lo xdp off 2>/dev/null > /dev/null
 if [ $? -ne 0 ];then
        echo "selftests: [SKIP] Could not run test without the ip xdp support"
-       exit 0
+       exit $KSFT_SKIP
 fi
 set -e
 
index bb8b0da91686f0e14105b7c22bb40a7e762f937f..0cbc7604a2f8147cc2ab6e6537ecd8a37df3d1be 100755 (executable)
@@ -2,6 +2,9 @@
 # SPDX-License-Identifier: GPL-2.0
 # Author: Jesper Dangaard Brouer <hawk@kernel.org>
 
+# Kselftest framework requirement - SKIP code is 4.
+readonly KSFT_SKIP=4
+
 # Allow wrapper scripts to name test
 if [ -z "$TESTNAME" ]; then
     TESTNAME=xdp_vlan
@@ -94,7 +97,7 @@ while true; do
            -h | --help )
                usage;
                echo "selftests: $TESTNAME [SKIP] usage help info requested"
-               exit 0
+               exit $KSFT_SKIP
                ;;
            * )
                shift
@@ -117,7 +120,7 @@ fi
 ip link set dev lo xdpgeneric off 2>/dev/null > /dev/null
 if [ $? -ne 0 ]; then
        echo "selftests: $TESTNAME [SKIP] need ip xdp support"
-       exit 0
+       exit $KSFT_SKIP
 fi
 
 # Interactive mode likely require us to cleanup netns