%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/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 # Load a program with BPF-to-BPF calls libbpf_open_file test_l4lb_noinline.o # Load a program compiled without the "-target bpf" flag libbpf_open_file test_xdp.o # Success exit 0