diff options
author | Stephen Warren <swarren@nvidia.com> | 2016-01-27 23:57:51 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-28 21:01:24 -0700 |
commit | 78b39cc3e19e698c04c2417ed5f79e324c90595e (patch) | |
tree | 89a27478bfba1d0c64f54cf3c5d1ff452e8017e7 /test/py/multiplexed_log.css | |
parent | 9129d9f5fd73a8bcdca7489b3ed2418a8b1416e2 (diff) |
test/py: correctly log xfail/xpass tests
Tests can complete in passed, skipped, xpass, xfailed, or failed, states.
Currently the U-Boot log generation code doesn't handle the xfailed or
xpass states since they aren't used. Add support for the remaining states.
Without this, tests that xfail end up being reported as skipped.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/py/multiplexed_log.css')
-rw-r--r-- | test/py/multiplexed_log.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/py/multiplexed_log.css b/test/py/multiplexed_log.css index 50f7b90929..f6240d52da 100644 --- a/test/py/multiplexed_log.css +++ b/test/py/multiplexed_log.css @@ -83,6 +83,14 @@ pre { color: #ffff00 } +.status-xfail { + color: #ff7f00 +} + +.status-xpass { + color: #ff7f00 +} + .status-fail { color: #ff0000 } |