]> git.proxmox.com Git - mirror_ovs.git/blame - tests/ofproto-macros.at
ovs-openflowd: Rename test-openflowd and move to "tests" directory.
[mirror_ovs.git] / tests / ofproto-macros.at
CommitLineData
0fbc9f11
BP
1m4_define([STRIP_XIDS], [[sed 's/ (xid=0x[0-9a-fA-F]*)//']])
2m4_define([STRIP_DURATION], [[sed 's/\bduration=[0-9.]*s/duration=?s/']])
01b389b1 3m4_define([TESTABLE_LOG], [-vPATTERN:ANY:'%c|%p|%m'])
0fbc9f11
BP
4
5m4_define([OFPROTO_START],
6 [OVS_RUNDIR=$PWD; export OVS_RUNDIR
7 OVS_LOGDIR=$PWD; export OVS_LOGDIR
045b2e5c
BP
8 trap 'kill `cat test-openflowd.pid`' 0
9 AT_CAPTURE_FILE([test-openflowd.log])
0fbc9f11 10 AT_CHECK(
045b2e5c 11 [test-openflowd --detach --pidfile --enable-dummy --log-file --fail=closed dummy@br0 none --datapath-id=fedcba9876543210 $1],
35fe1183
BP
12 [0], [], [stderr])
13 AT_CHECK([[sed < stderr '
14/vlog|INFO|opened log file/d
15/openflowd|INFO|Open vSwitch version/d
16/openflowd|INFO|OpenFlow protocol version/d
17/ofproto|INFO|using datapath ID/d
18/ofproto|INFO|datapath ID changed to fedcba9876543210/d']])
0fbc9f11
BP
19])
20
21m4_define([OFPROTO_STOP],
045b2e5c 22 [AT_CHECK([ovs-appctl -t test-openflowd exit])
0fbc9f11 23 trap '' 0])