As reported by Ales, net/tap has broken support for checksum offloading. Fixes have been sent to the DPDK side, but waiting for the fixes, simply disable all conntrack related tests and some IPv6 tunnel tests.
Signed-off-by: David Marchand <[email protected]> --- tests/system-dpdk-macros.at | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/system-dpdk-macros.at b/tests/system-dpdk-macros.at index de126946a0..a01781b5a8 100644 --- a/tests/system-dpdk-macros.at +++ b/tests/system-dpdk-macros.at @@ -183,6 +183,15 @@ m4_define([OVS_CHECK_TCPDUMP], [AT_SKIP_IF([:])]) +# FIXME: disable some failing tests, waiting for a fix on net/tap in DPDK +m4_define([CHECK_CONNTRACK], + [AT_SKIP_IF([:])]) +m4_define([OVS_CHECK_GENEVE_UDP6ZEROCSUM], + [AT_SKIP_IF([:])]) +m4_define([OVS_CHECK_VXLAN_UDP6ZEROCSUM], + [AT_SKIP_IF([:])]) + + # Fake a veth by creating a tap on kernel side and plug it in OVS using the # net/tap DPDK driver. m4_define([ADD_VETH], -- 2.41.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
