X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fofproto-macros.at;h=ee0d853f26db31d4beee11a1a9b784efc3ddb326;hb=7beaa082d7f422dda337780d6dd457b9a5ffe7d5;hp=52f19fc86f3a73bb72c2b3a31a1150612d2efe8d;hpb=0b7140bbc55768f9f1d12f2cc42fa29c5fa98483;p=openvswitch diff --git a/tests/ofproto-macros.at b/tests/ofproto-macros.at index 52f19fc8..ee0d853f 100644 --- a/tests/ofproto-macros.at +++ b/tests/ofproto-macros.at @@ -18,6 +18,7 @@ m4_divert_pop([PREPARE_TESTS]) m4_define([STRIP_XIDS], [[sed 's/ (xid=0x[0-9a-fA-F]*)//']]) m4_define([STRIP_DURATION], [[sed 's/\bduration=[0-9.]*s/duration=?s/']]) +m4_define([STRIP_USED], [[sed 's/used:[0-9]\.[0-9]*/used:0.0/']]) m4_define([TESTABLE_LOG], [-vPATTERN:ANY:'%c|%p|%m']) # OVS_VSWITCHD_START([vsctl-args], [vsctl-output]) @@ -66,3 +67,14 @@ m4_define([OVS_VSWITCHD_START], m4_define([OVS_VSWITCHD_STOP], [AT_CHECK([ovs-appctl -t ovs-vswitchd exit]) AT_CHECK([ovs-appctl -t ovsdb-server exit])]) + +# ADD_OF_PORTS(BRIDGE, OF_PORT[, OF_PORT...]) +# +# Creates a dummy interface with an OpenFlow port number of OF_PORT and +# name of p{OF_PORT}. The dummy implementation will treat the OF_PORT +# as the datapath port number, which as the effect of making the +# OpenFlow and datapath numbers the same. +m4_define([ADD_OF_PORTS], + [ovs-vsctl m4_foreach([of_port], m4_cdr($@), + [ \ + -- add-port $1 p[]of_port -- set Interface p[]of_port type=dummy ofport_request=of_port])])