diff options
author | Ben Pfaff <blp@nicira.com> | 2010-12-09 12:31:31 -0800 |
---|---|---|
committer | Ben Pfaff <blp@nicira.com> | 2010-12-09 12:31:31 -0800 |
commit | 8961de6adfd44216f47007ff75fd1cea213d7e31 (patch) | |
tree | aa5a1f4997a847768b8df66584ecda1b20cf25a6 /tests/ofproto.at | |
parent | f393f81e425658cdfddf29ca23086bf66d6b733c (diff) | |
download | openvswitch-8961de6adfd44216f47007ff75fd1cea213d7e31.tar.gz |
ofp-print: Print every flow on a new line for NXST_FLOW replies too.
This makes NXST_FLOW formatting consistent with OFPST_FLOW.
Suggested-by: Justin Pettit <jpettit@nicira.com>
Diffstat (limited to 'tests/ofproto.at')
-rw-r--r-- | tests/ofproto.at | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ofproto.at b/tests/ofproto.at index 9777e1613..907ac13bc 100644 --- a/tests/ofproto.at +++ b/tests/ofproto.at @@ -66,7 +66,8 @@ AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS], [0], [NXST_FLOW reply: AT_CHECK([ovs-ofctl add-flow br0 in_port=1,actions=0]) AT_CHECK([ovs-ofctl add-flow br0 in_port=0,actions=1]) AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS | STRIP_DURATION], [0], [dnl -NXST_FLOW reply: cookie=0x0, duration=?s, table_id=0, priority=32768, n_packets=0, n_bytes=0, in_port=1 actions=output:0 +NXST_FLOW reply: + cookie=0x0, duration=?s, table_id=0, priority=32768, n_packets=0, n_bytes=0, in_port=1 actions=output:0 cookie=0x0, duration=?s, table_id=0, priority=32768, n_packets=0, n_bytes=0, in_port=65534 actions=output:1 ]) AT_CHECK([ovs-ofctl del-flows br0]) |