aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJakub Kicinski <jakub.kicinski@netronome.com>2019-11-19 10:50:10 +0000
committerAlexei Starovoitov <ast@kernel.org>2019-11-24 16:58:45 -0800
commit5940c5bf6504f66f57f03f1d0046abfaf2198b3a (patch)
treed1395935d61237275e7e98cf5b9aa1b55289d129 /tools
parentselftests, bpftool: Set EXIT trap after usage function (diff)
downloadlinux-dev-5940c5bf6504f66f57f03f1d0046abfaf2198b3a.tar.xz
linux-dev-5940c5bf6504f66f57f03f1d0046abfaf2198b3a.zip
selftests, bpftool: Skip the build test if not in tree
If selftests are copied over to another machine/location for execution the build test of bpftool will obviously not work, since the sources are not copied. Skip it if we can't find bpftool's Makefile. Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org> Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20191119105010.19189-3-quentin.monnet@netronome.com
Diffstat (limited to '')
-rwxr-xr-xtools/testing/selftests/bpf/test_bpftool_build.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/test_bpftool_build.sh b/tools/testing/selftests/bpf/test_bpftool_build.sh
index 1fc6f6247f9b..ac349a5cea7e 100755
--- a/tools/testing/selftests/bpf/test_bpftool_build.sh
+++ b/tools/testing/selftests/bpf/test_bpftool_build.sh
@@ -20,6 +20,10 @@ SCRIPT_REL_PATH=$(realpath --relative-to=$PWD $0)
SCRIPT_REL_DIR=$(dirname $SCRIPT_REL_PATH)
KDIR_ROOT_DIR=$(realpath $PWD/$SCRIPT_REL_DIR/../../../../)
cd $KDIR_ROOT_DIR
+if [ ! -e tools/bpf/bpftool/Makefile ]; then
+ echo -e "skip: bpftool files not found!\n"
+ exit 0
+fi
ERROR=0
TMPDIR=