]> git.proxmox.com Git - ovs.git/commitdiff
system-kmod-macros: Load TFTP module.
authorJoe Stringer <joe@ovn.org>
Mon, 7 Aug 2017 21:58:45 +0000 (14:58 -0700)
committerJoe Stringer <joe@ovn.org>
Tue, 8 Aug 2017 00:35:20 +0000 (17:35 -0700)
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 <joe@ovn.org>
Acked-by: Andy Zhou <azhou@ovn.org>
tests/system-kmod-macros.at

index e1b5707925a5f27076842fdbca7144ff0f764136..27498341a9f8252629652512eca386b7a2693c62 100644 (file)
@@ -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'
                 ])