X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=tests%2Fsystem-userspace-macros.at;h=565a7a08fff9678107b5e7481c05690f85ca3aeb;hb=8fb7d02686ed85ad799dfd902ea88d977dab1868;hp=fca26f705634156042286dfc2c0c25ac7072c0fb;hpb=5390d18598e9eff8925d577655a703a42d417d70;p=cascardo%2Fovs.git diff --git a/tests/system-userspace-macros.at b/tests/system-userspace-macros.at index fca26f705..565a7a08f 100644 --- a/tests/system-userspace-macros.at +++ b/tests/system-userspace-macros.at @@ -1,8 +1,8 @@ # _ADD_BR([name]) # # Expands into the proper ovs-vsctl commands to create a bridge with the -# appropriate type -m4_define([_ADD_BR], [[add-br $1 -- set Bridge $1 datapath_type="netdev" ]]) +# appropriate type and properties +m4_define([_ADD_BR], [[add-br $1 -- set Bridge $1 datapath_type="netdev" protocols=OpenFlow10,OpenFlow11,OpenFlow12,OpenFlow13,OpenFlow14,OpenFlow15 fail-mode=secure ]]) # OVS_TRAFFIC_VSWITCHD_START([vsctl-args], [vsctl-output], [=override]) # @@ -16,7 +16,7 @@ m4_define([OVS_TRAFFIC_VSWITCHD_START], [ _OVS_VSWITCHD_START([--disable-system]) dnl Add bridges, ports, etc. - AT_CHECK([ovs-vsctl -- _ADD_BR([br0]) -- set bridge br0 protocols=[[OpenFlow10,OpenFlow11,OpenFlow12,OpenFlow13,OpenFlow14,OpenFlow15]] fail-mode=secure -- $1 m4_if([$2], [], [], [| ${PERL} $srcdir/uuidfilt.pl])], [0], [$2]) + AT_CHECK([ovs-vsctl -- _ADD_BR([br0]) -- $1 m4_if([$2], [], [], [| ${PERL} $srcdir/uuidfilt.pl])], [0], [$2]) ]) # OVS_TRAFFIC_VSWITCHD_STOP([WHITELIST], [extra_cmds]) @@ -37,3 +37,12 @@ m4_define([OVS_TRAFFIC_VSWITCHD_STOP], /dpif_netlink.*Generic Netlink family 'ovs_datapath' does not exist. The Open vSwitch kernel module is probably not loaded./d"]) AT_CHECK([:; $2]) ]) + +# CHECK_CONNTRACK() +# +# Perform requirements checks for running conntrack tests, and flush the +# kernel conntrack tables when the test is finished. +# +m4_define([CHECK_CONNTRACK], + [AT_SKIP_IF(true)] +)