SockaddrCAN: remove test for "ifindex too big"

does not compile on i386 due to integer size
This commit is contained in:
Stephan Klatt
2020-08-19 07:57:44 +02:00
committed by GitHub
parent 75addc0a8d
commit c52dbd1194

View File

@@ -594,13 +594,6 @@ func TestSockaddrCAN_sockaddr(t *testing.T) {
},
err: EINVAL,
},
{
name: "ifindex to big",
sa: &SockaddrCAN{
Ifindex: 0x80000000,
},
err: EINVAL,
},
}
for _, tt := range tests {