The initialization error of the flow tables causes forced termination of the test, and has become the hindrance of execution of other tests. This patch changes operation of the flow tables initialization error to avoid forced termination of the test.
Signed-off-by: WATANABE Fumitaka <[email protected]> --- ryu/tests/switch/tester.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ryu/tests/switch/tester.py b/ryu/tests/switch/tester.py index f1c132f..f16185b 100644 --- a/ryu/tests/switch/tester.py +++ b/ryu/tests/switch/tester.py @@ -359,8 +359,6 @@ class OfTester(app_manager.RyuApp): or result == 'An unknown exception'): self.logger.error(traceback.format_exc()) - if result[0] != TEST_OK and self.state == STATE_INIT: - self._test_end('--- Test terminated ---') hub.sleep(0) return result_type -- 1.7.10.4 ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
