Re: [PATCH bpf v4] selftests/bpf: convert test_xdp_redirect.sh to bash

2021-02-11 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to bpf/bpf.git (refs/heads/master): On Thu, 11 Feb 2021 09:20:29 +0100 you wrote: > From: Björn Töpel > > The test_xdp_redirect.sh script uses a bash feature, '&>'. On systems, > e.g. Debian, where '/bin/sh' is dash, this will not work as > expected. Use bash in th

[PATCH bpf v4] selftests/bpf: convert test_xdp_redirect.sh to bash

2021-02-11 Thread Björn Töpel
From: Björn Töpel The test_xdp_redirect.sh script uses a bash feature, '&>'. On systems, e.g. Debian, where '/bin/sh' is dash, this will not work as expected. Use bash in the shebang to get the expected behavior. Further, using 'set -e' means that the error of a command cannot be captured withou