mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 09:15:42 +07:00
c5fa5d6022
The return value for each test in test_libbpf.sh is compared with if (( $? == 0 )) ; then ... This works well with bash, but not with dash, that /bin/sh is aliased to on some systems (such as Ubuntu). Let's replace this comparison by something that works on both shells. Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com> Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
50 lines
1.1 KiB
Bash
Executable File
50 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
export TESTNAME=test_libbpf
|
|
|
|
# Determine selftest success via shell exit code
|
|
exit_handler()
|
|
{
|
|
if [ $? -eq 0 ]; then
|
|
echo "selftests: $TESTNAME [PASS]";
|
|
else
|
|
echo "$TESTNAME: failed at file $LAST_LOADED" 1>&2
|
|
echo "selftests: $TESTNAME [FAILED]";
|
|
fi
|
|
}
|
|
|
|
libbpf_open_file()
|
|
{
|
|
LAST_LOADED=$1
|
|
if [ -n "$VERBOSE" ]; then
|
|
./test_libbpf_open $1
|
|
else
|
|
./test_libbpf_open --quiet $1
|
|
fi
|
|
}
|
|
|
|
# Exit script immediately (well catched by trap handler) if any
|
|
# program/thing exits with a non-zero status.
|
|
set -e
|
|
|
|
# (Use 'trap -l' to list meaning of numbers)
|
|
trap exit_handler 0 2 3 6 9
|
|
|
|
libbpf_open_file test_l4lb.o
|
|
|
|
# TODO: fix libbpf to load noinline functions
|
|
# [warning] libbpf: incorrect bpf_call opcode
|
|
#libbpf_open_file test_l4lb_noinline.o
|
|
|
|
# TODO: fix test_xdp_meta.c to load with libbpf
|
|
# [warning] libbpf: test_xdp_meta.o doesn't provide kernel version
|
|
#libbpf_open_file test_xdp_meta.o
|
|
|
|
# TODO: fix libbpf to handle .eh_frame
|
|
# [warning] libbpf: relocation failed: no section(10)
|
|
#libbpf_open_file ../../../../samples/bpf/tracex3_kern.o
|
|
|
|
# Success
|
|
exit 0
|