mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-22 10:34:55 +08:00
404bd9ff5d
test_bpftool.sh relies on bpftool and test_bpftool.py. 'make install' will install bpftool to INSTALL_PATH/bpf/bpftool, and export it to PATH so that it can be used after installing. Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Link: https://lore.kernel.org/bpf/20210820015556.23276-5-lizhijian@cn.fujitsu.com
12 lines
415 B
Bash
Executable File
12 lines
415 B
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2020 SUSE LLC.
|
|
|
|
# 'make -C tools/testing/selftests/bpf install' will install to SCRIPT_DIR
|
|
SCRIPT_DIR=$(dirname $(realpath $0))
|
|
|
|
# 'make -C tools/testing/selftests/bpf' will install to BPFTOOL_INSTALL_PATH
|
|
BPFTOOL_INSTALL_PATH="$SCRIPT_DIR"/tools/sbin
|
|
export PATH=$SCRIPT_DIR:$BPFTOOL_INSTALL_PATH:$PATH
|
|
python3 -m unittest -v test_bpftool.TestBpftool
|