diff options
author | Stephen Warren <swarren@nvidia.com> | 2018-02-20 12:51:55 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-13 21:59:26 -0400 |
commit | 32090e5070845564e36c9c5ccc3dc708ece80298 (patch) | |
tree | 0188385fda11d2df2d6aa1b52c6c18ffa01bc876 /test/py/multiplexed_log.css | |
parent | 4bdc90f9c7b3a8a55aa669ad675849c1438b7a34 (diff) | |
download | u-boot-32090e5070845564e36c9c5ccc3dc708ece80298.tar.gz u-boot-32090e5070845564e36c9c5ccc3dc708ece80298.tar.xz u-boot-32090e5070845564e36c9c5ccc3dc708ece80298.zip |
test/py: highlight warnings in the log summary
Currently, if a test emits a warning message but otherwise passes, there's
no indication of this in the log summary, which can lead to warnings being
missed. Enhance the test logic to explicitly mention warnings in otherwise
passing tests, and not to collapse the log sections for tests with
warnings, so that they're more easily seen when scanning the log.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'test/py/multiplexed_log.css')
-rw-r--r-- | test/py/multiplexed_log.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/py/multiplexed_log.css b/test/py/multiplexed_log.css index 9b7c44fe4d..562f69f3b6 100644 --- a/test/py/multiplexed_log.css +++ b/test/py/multiplexed_log.css @@ -70,6 +70,10 @@ pre { color: #00ff00 } +.status-warning { + color: #ffff00 +} + .status-skipped { color: #ffff00 } |