From 78b39cc3e19e698c04c2417ed5f79e324c90595e Mon Sep 17 00:00:00 2001 From: Stephen Warren Date: Wed, 27 Jan 2016 23:57:51 -0700 Subject: 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 Acked-by: Simon Glass --- test/py/multiplexed_log.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/py/multiplexed_log.css') diff --git a/test/py/multiplexed_log.css b/test/py/multiplexed_log.css index 50f7b909298..f6240d52da6 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 } -- cgit v1.2.3