mirror of https://gitee.com/openkylin/linux.git
selftests/net: skip psock_tpacket test if KALLSYMS was not enabled
The psock_tpacket test will need to access /proc/kallsyms, this would require the kernel config CONFIG_KALLSYMS to be enabled first. Apart from adding CONFIG_KALLSYMS to the net/config file here, check the file existence to determine if we can run this test will be helpful to avoid a false-positive test result when testing it directly with the following commad against a kernel that have CONFIG_KALLSYMS disabled: make -C tools/testing/selftests TARGETS=net run_tests Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com> Acked-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
99f0eae653
commit
ff95bf28c2
|
@ -25,3 +25,4 @@ CONFIG_NF_TABLES_IPV6=y
|
||||||
CONFIG_NF_TABLES_IPV4=y
|
CONFIG_NF_TABLES_IPV4=y
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
CONFIG_NFT_CHAIN_NAT_IPV6=m
|
||||||
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
CONFIG_NFT_CHAIN_NAT_IPV4=m
|
||||||
|
CONFIG_KALLSYMS=y
|
||||||
|
|
|
@ -21,12 +21,16 @@ fi
|
||||||
echo "--------------------"
|
echo "--------------------"
|
||||||
echo "running psock_tpacket test"
|
echo "running psock_tpacket test"
|
||||||
echo "--------------------"
|
echo "--------------------"
|
||||||
./in_netns.sh ./psock_tpacket
|
if [ -f /proc/kallsyms ]; then
|
||||||
if [ $? -ne 0 ]; then
|
./in_netns.sh ./psock_tpacket
|
||||||
echo "[FAIL]"
|
if [ $? -ne 0 ]; then
|
||||||
ret=1
|
echo "[FAIL]"
|
||||||
|
ret=1
|
||||||
|
else
|
||||||
|
echo "[PASS]"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
echo "[PASS]"
|
echo "[SKIP] CONFIG_KALLSYMS not enabled"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "--------------------"
|
echo "--------------------"
|
||||||
|
|
Loading…
Reference in New Issue