Hi , I have executed github openflow 1.3 scripts with Openvswitch and got the below error as openvswitch not accepting the message (OFPBRC_EPERM)
======================================================================
FAIL: bsn_gentable.SetBucketsSizeError
----------------------------------------------------------------------
Traceback (most recent call last):
File "/root/oftest/tests-1.3/bsn_gentable.py", line 657, in runTest
self.assertEquals(error.code, ofp.OFPBRC_EPERM)
AssertionError: 3 != 5
Scripts:
class EntryStatsFragmented(BaseGenTableTest):
"""
Test retrieving entry stats in mutiple replies
"""
def runTest(self):
# Add a bunch of entries
# Enough for 3 stats replies
for i in range(0, 4095):
self.do_add(vlan_vid=i, ipv4=0x12345678, mac=(0, 1, 2, 3, 4, 5))
do_barrier(self.controller)
verify_no_errors(self.controller)
entries = self.do_entry_stats()
seen = set()
for entry in entries:
key = tlv_dict(entry.key)
vlan_vid = key[ofp.bsn_tlv.vlan_vid]
self.assertNotIn(vlan_vid, seen)
seen.add(vlan_vid)
self.assertEquals(seen, set(range(0, 4095)))
Also , bsn_gentable scripts all are failing due to "error.err_type, error.code"
.PFA errors.
Thanks
Jay
The information contained in this electronic message and any attachments to
this message are intended for the exclusive use of the addressee(s) and may
contain proprietary, confidential or privileged information. If you are not the
intended recipient, you should not disseminate, distribute or copy this e-mail.
Please notify the sender immediately and destroy all copies of this message and
any attachments. WARNING: Computer viruses can be transmitted via email. The
recipient should check this email and any attachments for the presence of
viruses. The company accepts no liability for any damage caused by any virus
transmitted by this email. www.wipro.com
bsn_gentable error.docx
Description: bsn_gentable error.docx
_______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss
