aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVincenzo Maffione <vmaffione@FreeBSD.org>2023-12-29 07:46:46 +0000
committerVincenzo Maffione <vmaffione@FreeBSD.org>2023-12-29 07:46:46 +0000
commitee5804da116f2107451c8b4376b69b3a64a630e8 (patch)
treebb7c438794c23ea8a6198c72c5c0dc1602562d81 /tests
parent8a735ffdf04936c6785ac4fa31486639262dd416 (diff)
downloadsrc-ee5804da116f2107451c8b4376b69b3a64a630e8.tar.gz
src-ee5804da116f2107451c8b4376b69b3a64a630e8.zip
netmap: fix unit tests
After ad874544d9f018bf8eef4053b5ca7b856c4674cb, interface name validation has been removed, resulting in two unit tests failures. Drop the failing tests since they no longer apply. Reported by: markj
Diffstat (limited to 'tests')
-rw-r--r--tests/sys/netmap/ctrl-api-test.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/sys/netmap/ctrl-api-test.c b/tests/sys/netmap/ctrl-api-test.c
index 9fc08d3082a4..8d33b4c58d2a 100644
--- a/tests/sys/netmap/ctrl-api-test.c
+++ b/tests/sys/netmap/ctrl-api-test.c
@@ -1803,7 +1803,6 @@ static struct nmreq_parse_test nmreq_parse_tests[] = {
{ "netmap:", "", NULL, EINVAL, 0, 0, 0 },
{ "netmap:^", "", NULL, EINVAL, 0, 0, 0 },
{ "netmap:{", "", NULL, EINVAL, 0, 0, 0 },
- { "netmap:vale0:0", NULL, NULL, EINVAL, 0, 0, 0 },
{ "eth0", NULL, NULL, EINVAL, 0, 0, 0 },
{ "vale0:0", "vale0:0", "", 0, NR_REG_ALL_NIC, 0, 0 },
{ "vale:0", "vale:0", "", 0, NR_REG_ALL_NIC, 0, 0 },
@@ -1811,7 +1810,6 @@ static struct nmreq_parse_test nmreq_parse_tests[] = {
{ "valeXXX:YYY-4", "valeXXX:YYY", "", 0, NR_REG_ONE_NIC, 4, 0 },
{ "netmapXXX:eth0", NULL, NULL, EINVAL, 0, 0, 0 },
{ "netmap:14", "14", "", 0, NR_REG_ALL_NIC, 0, 0 },
- { "netmap:eth0&", NULL, NULL, EINVAL, 0, 0, 0 },
{ "netmap:pipe{0", "pipe{0", "", 0, NR_REG_ALL_NIC, 0, 0 },
{ "netmap:pipe{in", "pipe{in", "", 0, NR_REG_ALL_NIC, 0, 0 },
{ "netmap:pipe{in-7", "pipe{in", "", 0, NR_REG_ONE_NIC, 7, 0 },