X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fofproto-macros.at;h=52f19fc86f3a73bb72c2b3a31a1150612d2efe8d;hb=f8e4867eafd076e94bdb5bcf7c7dc69ca7a9c8ae;hp=13586c36ed7bbb72c14efe414344df0762a6d2e6;hpb=9da5b93abce74a41cce2bcba2d17c7b781123f7b;p=openvswitch diff --git a/tests/ofproto-macros.at b/tests/ofproto-macros.at index 13586c36..52f19fc8 100644 --- a/tests/ofproto-macros.at +++ b/tests/ofproto-macros.at @@ -1,3 +1,21 @@ +m4_divert_push([PREPARE_TESTS]) +[ +# Strips out uninteresting parts of ovs-ofctl output, as well as parts +# that vary from one run to another. +ofctl_strip () { + sed ' +s/ (xid=0x[0-9a-fA-F]*)// +s/ duration=[0-9.]*s,// +s/ cookie=0x0,// +s/ table=0,// +s/ n_packets=0,// +s/ n_bytes=0,// +s/ idle_age=[0-9]*,// +s/ hard_age=[0-9]*,// +' +}] +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([TESTABLE_LOG], [-vPATTERN:ANY:'%c|%p|%m']) @@ -11,29 +29,32 @@ m4_define([TESTABLE_LOG], [-vPATTERN:ANY:'%c|%p|%m']) # output (e.g. because it includes "create" commands) then 'vsctl-output' # specifies the expected output after filtering through uuidfilt.pl. m4_define([OVS_VSWITCHD_START], - [OVS_RUNDIR=$PWD; export OVS_RUNDIR - OVS_LOGDIR=$PWD; export OVS_LOGDIR - OVS_SYSCONFDIR=$PWD; export OVS_SYSCONFDIR - trap 'kill `cat ovsdb-server.pid ovs-vswitchd.pid`' 0 + [OVS_RUNDIR=`pwd`; export OVS_RUNDIR + OVS_LOGDIR=`pwd`; export OVS_LOGDIR + OVS_DBDIR=`pwd`; export OVS_DBDIR + OVS_SYSCONFDIR=`pwd`; export OVS_SYSCONFDIR + 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']]) @@ -44,5 +65,4 @@ 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])])