X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fofproto-macros.at;h=8b8de155f88099abaafc7f1fc1c58d3ecf8ed0c1;hb=e1b1d06afdee407ccfa3c4c257b8dcfbcdd004ff;hp=a7ac388d937ed8c12e4d94b0f85e8d2e69c4b94d;hpb=37d034580ad38d61f81559a5cd03d11b5468762a;p=openvswitch diff --git a/tests/ofproto-macros.at b/tests/ofproto-macros.at index a7ac388d..8b8de155 100644 --- a/tests/ofproto-macros.at +++ b/tests/ofproto-macros.at @@ -10,8 +10,8 @@ s/ cookie=0x0,// s/ table=0,// s/ n_packets=0,// s/ n_bytes=0,// -s/idle_age=[0-9]*,// -s/hard_age=[0-9]*,// +s/ idle_age=[0-9]*,// +s/ hard_age=[0-9]*,// ' }] m4_divert_pop([PREPARE_TESTS]) @@ -31,27 +31,30 @@ m4_define([TESTABLE_LOG], [-vPATTERN:ANY:'%c|%p|%m']) m4_define([OVS_VSWITCHD_START], [OVS_RUNDIR=`pwd`; export OVS_RUNDIR OVS_LOGDIR=`pwd`; export OVS_LOGDIR + OVS_DBDIR=`pwd`; export OVS_DBDIR OVS_SYSCONFDIR=`pwd`; export OVS_SYSCONFDIR - trap 'kill `cat ovsdb-server.pid ovs-vswitchd.pid`' 0 + ON_EXIT([kill `cat ovsdb-server.pid ovs-vswitchd.pid`]) dnl Create database. - mkdir openvswitch - touch openvswitch/.conf.db.~lock~ - AT_CHECK([ovsdb-tool create openvswitch/conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema]) + touch .conf.db.~lock~ + AT_CHECK([ovsdb-tool create conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema]) dnl Start ovsdb-server. - AT_CHECK([ovsdb-server --detach --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock], [0], [], [stderr]) - AT_CHECK([[sed < stderr '/vlog|INFO|opened log file/d']]) + AT_CHECK([ovsdb-server --detach --no-chdir --pidfile --log-file --remote=punix:$OVS_RUNDIR/db.sock], [0], [], [stderr]) + AT_CHECK([[sed < stderr ' +/vlog|INFO|opened log file/d +/ovsdb_server|INFO|ovsdb-server (Open vSwitch)/d']]) AT_CAPTURE_FILE([ovsdb-server.log]) dnl Initialize database. AT_CHECK([ovs-vsctl --no-wait init]) dnl Start ovs-vswitchd. - AT_CHECK([ovs-vswitchd --detach --pidfile --enable-dummy --disable-system --log-file], [0], [], [stderr]) + AT_CHECK([ovs-vswitchd --detach --no-chdir --pidfile --enable-dummy --disable-system --log-file -vvconn -vofproto_dpif], [0], [], [stderr]) AT_CAPTURE_FILE([ovs-vswitchd.log]) AT_CHECK([[sed < stderr ' /vlog|INFO|opened log file/d +/vswitchd|INFO|ovs-vswitchd (Open vSwitch)/d /reconnect|INFO|/d /ofproto|INFO|using datapath ID/d /ofproto|INFO|datapath ID changed to fedcba9876543210/d']]) @@ -62,5 +65,15 @@ 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]) - trap '' 0]) + 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])])