From: Joe Stringer Date: Mon, 7 Aug 2017 21:58:45 +0000 (-0700) Subject: system-kmod-macros: Load TFTP module. X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=5734dbfca8cb78f2e84c48bbb5d4c78e69439640;p=ovs.git system-kmod-macros: Load TFTP module. Just like the FTP module needs to be loaded to ensure that the FTP tests work, the TFTP module needs to be loaded to ensure that the TFTP tests work. This patch does so. From master commit 6b1babacc3ca0488e07596bf822fe356c9bab646. Fixes: 200a9af97d1c ("System tests: Add 4 new ftp and tftp tests.") Signed-off-by: Joe Stringer Acked-by: Andy Zhou --- diff --git a/tests/system-kmod-macros.at b/tests/system-kmod-macros.at index e1b570792..27498341a 100644 --- a/tests/system-kmod-macros.at +++ b/tests/system-kmod-macros.at @@ -59,7 +59,8 @@ m4_define([CONFIGURE_VETH_OFFLOADS], # m4_define([CHECK_CONNTRACK], [AT_SKIP_IF([test $HAVE_PYTHON = no]) - m4_foreach([mod], [[nf_conntrack_ipv4], [nf_conntrack_ipv6], [nf_nat_ftp]], + m4_foreach([mod], [[nf_conntrack_ipv4], [nf_conntrack_ipv6], [nf_nat_ftp], + [nf_nat_tftp]], [modprobe mod || echo "Module mod not loaded." on_exit 'modprobe -r mod' ])