From: juraj.linkes Date: Wed, 21 Nov 2018 12:13:39 +0000 (+0100) Subject: Fix test logging propagation X-Git-Tag: v19.04-rc0~336 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=3d9b92a0c56c3cbe51e75bc3cb40d3d2db2d3720 Fix test logging propagation When running tests with child processes the logs from child processes would propagate to root logger, potentially resulting in some logs being emitted twice. Fix this by disabling log propagation to parent loggers in child processes. Change-Id: I31eb265c2b7f7bceff627043956a67d6def3da2b Signed-off-by: juraj.linkes --- diff --git a/test/framework.py b/test/framework.py index 4c536e062b0..4f830ba613e 100644 --- a/test/framework.py +++ b/test/framework.py @@ -379,6 +379,7 @@ class VppTestCase(unittest.TestCase): cls.logger = get_logger(cls.__name__) if hasattr(cls, 'parallel_handler'): cls.logger.addHandler(cls.parallel_handler) + cls.logger.propagate = False cls.tempdir = tempfile.mkdtemp( prefix='vpp-unittest-%s-' % cls.__name__) cls.stats_sock = "%s/stats.sock" % cls.tempdir