예제 #1
0
파일: basic.py 프로젝트: rrdenicol/oftest12
 def runTest(self):
     basic_logger.info("Running " + str(self))
     table_mod = message.table_mod()
     table_mod.table_id = 0 # first table should always exist
     table_mod.config = ofp.OFPTC_TABLE_MISS_CONTROLLER
     
     rv = self.controller.message_send(table_mod)
     self.assertTrue(rv != -1, "Error sending table_mod")
     testutils.do_echo_request_reply_test(self, self.controller)
예제 #2
0
파일: basic.py 프로젝트: namssob/oftest12
    def runTest(self):
        basic_logger.info("Running " + str(self))
        table_mod = message.table_mod()
        table_mod.table_id = 0  # first table should always exist
        table_mod.config = ofp.OFPTC_TABLE_MISS_CONTROLLER

        rv = self.controller.message_send(table_mod)
        self.assertTrue(rv != -1, "Error sending table_mod")
        testutils.do_echo_request_reply_test(self, self.controller)
예제 #3
0
파일: basic.py 프로젝트: rrdenicol/oftest12
 def runTest(self):
     testutils.do_echo_request_reply_test(self, self.controller)
예제 #4
0
파일: basic.py 프로젝트: namssob/oftest12
 def runTest(self):
     testutils.do_echo_request_reply_test(self, self.controller)