mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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 (cherry picked from commit ee5804da116f2107451c8b4376b69b3a64a630e8)
This commit is contained in:
parent
931dec4044
commit
984e3d813e
1 changed files with 0 additions and 2 deletions
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Reference in a new issue