diff options
| author | Daniel Borkmann <[email protected]> | 2024-05-24 16:36:18 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2024-05-25 17:48:57 +0000 |
| commit | 998ffeb2738e26f134dc8e63b5dcaece22573957 (patch) | |
| tree | 32d71431910f2beba683c40b443997986f08ba81 /tools/testing/selftests/bpf/prog_tests/tc_netkit.c | |
| parent | netkit: Fix pkt_type override upon netkit pass verdict (diff) | |
| download | kernel-998ffeb2738e26f134dc8e63b5dcaece22573957.tar.gz kernel-998ffeb2738e26f134dc8e63b5dcaece22573957.zip | |
selftests/bpf: Add netkit tests for mac address
This adds simple tests around setting MAC addresses in the different
netkit modes.
Signed-off-by: Daniel Borkmann <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/tc_netkit.c')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/tc_netkit.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/tc_netkit.c b/tools/testing/selftests/bpf/prog_tests/tc_netkit.c index 15ee7b2fc410..18b2e969a456 100644 --- a/tools/testing/selftests/bpf/prog_tests/tc_netkit.c +++ b/tools/testing/selftests/bpf/prog_tests/tc_netkit.c @@ -73,6 +73,16 @@ static int create_netkit(int mode, int policy, int peer_policy, int *ifindex, "up primary"); ASSERT_OK(system("ip addr add dev " netkit_name " 10.0.0.1/24"), "addr primary"); + + if (mode == NETKIT_L3) { + ASSERT_EQ(system("ip link set dev " netkit_name + " addr ee:ff:bb:cc:aa:dd 2> /dev/null"), 512, + "set hwaddress"); + } else { + ASSERT_OK(system("ip link set dev " netkit_name + " addr ee:ff:bb:cc:aa:dd"), + "set hwaddress"); + } if (same_netns) { ASSERT_OK(system("ip link set dev " netkit_peer " up"), "up peer"); |
