コード例 #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)