diff options
author | Daniel T. Lee <danieltimlee@gmail.com> | 2023-01-15 08:16:05 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2023-01-15 22:32:45 +0100 |
commit | f20f064e84eb9c9229a7044e30f9b99720a8c2ea (patch) | |
tree | a854809a4c4a57d218cc855dc202dd88bcecee65 /samples/bpf/test_cgrp2_tc.sh | |
parent | samples/bpf: ensure ipv6 is enabled before running tests (diff) | |
download | linux-f20f064e84eb9c9229a7044e30f9b99720a8c2ea.tar.xz linux-f20f064e84eb9c9229a7044e30f9b99720a8c2ea.zip |
samples/bpf: refactor BPF functionality testing scripts
Currently, some test scripts are experiencing minor errors related to
executing tests.
$ sudo ./test_cgrp2_sock.sh
./test_cgrp2_sock.sh: 22: test_cgrp2_sock: not found
This problem occurs because the path to the execution target is not
properly specified. Therefore, this commit solves this problem by
specifying a relative path to its executables. This commit also makes
a concise refactoring of hard-coded BPF program names.
Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com>
Link: https://lore.kernel.org/r/20230115071613.125791-3-danieltimlee@gmail.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'samples/bpf/test_cgrp2_tc.sh')
-rwxr-xr-x | samples/bpf/test_cgrp2_tc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/bpf/test_cgrp2_tc.sh b/samples/bpf/test_cgrp2_tc.sh index a6f1ed03ddf6..37a2c9cba6d0 100755 --- a/samples/bpf/test_cgrp2_tc.sh +++ b/samples/bpf/test_cgrp2_tc.sh @@ -76,8 +76,8 @@ setup_net() { sysctl -q net.ipv6.conf.$HOST_IFC.disable_ipv6=0 sysctl -q net.ipv6.conf.$HOST_IFC.accept_dad=0 - $IP netns add ns || return $? - $IP link set dev $NS_IFC netns ns || return $? + $IP netns add $NS || return $? + $IP link set dev $NS_IFC netns $NS || return $? $IP -n $NS link set dev $NS_IFC up || return $? $IP netns exec $NS sysctl -q net.ipv6.conf.$NS_IFC.disable_ipv6=0 $IP netns exec $NS sysctl -q net.ipv6.conf.$NS_IFC.accept_dad=0 |