X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fofproto-macros.at;h=1184d2604d08e369d08066929d1f2ff67b808704;hb=2d57bfce57f2c71d1f396ad091e7c45ed2862f41;hp=13586c36ed7bbb72c14efe414344df0762a6d2e6;hpb=9da5b93abce74a41cce2bcba2d17c7b781123f7b;p=openvswitch diff --git a/tests/ofproto-macros.at b/tests/ofproto-macros.at index 13586c36..1184d260 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'])