Re: [PATCH] selftests: fix the return value for UDP GRO test

2021-01-05 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Tue, 5 Jan 2021 18:17:40 +0800 you wrote: > The udpgro.sh will always return 0 (unless the bpf selftest was not > build first) even if there are some failed sub test-cases. > > Therefore the kselftest framework will report

[PATCH] selftests: fix the return value for UDP GRO test

2021-01-05 Thread Po-Hsu Lin
The udpgro.sh will always return 0 (unless the bpf selftest was not build first) even if there are some failed sub test-cases. Therefore the kselftest framework will report this case is OK. Check and return the exit status of each test to make it easier to spot real failures. Signed-off-by: Po-H