From: Mark Stapp Date: Wed, 3 Feb 2021 17:18:36 +0000 (-0500) Subject: tests: report kernel version check failures X-Git-Tag: base_8.0~372^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F8012%2Fhead;p=mirror%2Ffrr.git tests: report kernel version check failures Report kernel version check failures in the test log. Signed-off-by: Mark Stapp --- diff --git a/tests/topotests/lib/common_config.py b/tests/topotests/lib/common_config.py index a1ef2f5f28..ce35bdc0fe 100644 --- a/tests/topotests/lib/common_config.py +++ b/tests/topotests/lib/common_config.py @@ -4119,6 +4119,9 @@ def required_linux_kernel_version(required_version): 'These tests will not run on kernel "{}", ' "they require kernel >= {})".format(system_kernel, required_version) ) + + logger.info(error_msg) + return error_msg return True