scripts/unit-test: Make skipped steps more verbose
We want it to be obvious we are skipping validation steps when a
platform doesn't have support for it.
Change-Id: I2bf3fe7517a8f6e088b5ce0efc3ffbd7f790bb0e
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/scripts/unit-test.py b/scripts/unit-test.py
index 492f10c..67e153c 100755
--- a/scripts/unit-test.py
+++ b/scripts/unit-test.py
@@ -626,6 +626,7 @@
by utilizing add_test_setup() in a meson.build
"""
if not is_valgrind_safe():
+ sys.stderr.write("###### Skipping valgrind ######\n")
return
if meson_setup_exists('valgrind'):
check_call_cmd('meson', 'test', '-C', 'build',
@@ -645,6 +646,7 @@
# a workaround, just don't run valgrind tests on POWER.
# https://github.com/openbmc/openbmc/issues/3315
if not is_valgrind_safe():
+ sys.stderr.write("###### Skipping valgrind ######\n")
return
if not make_target_exists('check-valgrind'):
return
@@ -824,6 +826,8 @@
# '--logbase', 'testlog-msan')
check_call_cmd('meson', 'configure', 'build',
'-Db_sanitize=none', '-Db_lundef=true')
+ else:
+ sys.stderr.write("###### Skipping sanitizers ######\n")
# Run coverage checks
check_call_cmd('meson', 'configure', 'build',