diff options
author | Ben Pfaff <blp@nicira.com> | 2010-12-14 11:36:04 -0800 |
---|---|---|
committer | Ben Pfaff <blp@nicira.com> | 2010-12-15 09:48:18 -0800 |
commit | f904747bf8131f8065d88496efa548760e45a4c3 (patch) | |
tree | 24555343aebc9732fb7c77a43fa8c2ebe3425daa /tests/ofproto.at | |
parent | 92ec574173978b410ad28f6cfa34255629204d13 (diff) | |
download | openvswitch-f904747bf8131f8065d88496efa548760e45a4c3.tar.gz |
ofp-print: Always print priority exactly once.
Reported-by: Paul Ingram <paul@nicira.com>
Diffstat (limited to 'tests/ofproto.at')
-rw-r--r-- | tests/ofproto.at | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ofproto.at b/tests/ofproto.at index 907ac13bc..6b430e56f 100644 --- a/tests/ofproto.at +++ b/tests/ofproto.at @@ -67,8 +67,8 @@ 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 - cookie=0x0, duration=?s, table_id=0, priority=32768, n_packets=0, n_bytes=0, in_port=65534 actions=output:1 + cookie=0x0, duration=?s, table_id=0, n_packets=0, n_bytes=0, in_port=1 actions=output:0 + cookie=0x0, duration=?s, table_id=0, n_packets=0, n_bytes=0, in_port=65534 actions=output:1 ]) AT_CHECK([ovs-ofctl del-flows br0]) AT_CHECK([ovs-ofctl dump-flows br0 | STRIP_XIDS], [0], [NXST_FLOW reply: |