From 91f47ed7eb460b8b91037760ca26579236bce94e Mon Sep 17 00:00:00 2001 From: Tuetuopay Date: Fri, 24 Feb 2023 19:20:53 +0100 Subject: [PATCH] fixup! test: add AF_XDP integration test --- test/integration-test/src/tests/xdp.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/test/integration-test/src/tests/xdp.rs b/test/integration-test/src/tests/xdp.rs index 66a6a4772..25eb41d70 100644 --- a/test/integration-test/src/tests/xdp.rs +++ b/test/integration-test/src/tests/xdp.rs @@ -40,7 +40,6 @@ fn af_xdp() { // (valid for all further unsafe) unsafe { fq.produce(&descs) }; - // Expected to fail as our probe redirects all packets to the socket let sock = UdpSocket::bind("127.0.0.1:0").unwrap(); let port = sock.local_addr().unwrap().port(); sock.send_to(b"hello AF_XDP", "127.0.0.1:1777").unwrap();