mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 17:28:15 +00:00
78b39cc3e1
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>
96 lines
1.3 KiB
CSS
96 lines
1.3 KiB
CSS
/*
|
|
* Copyright (c) 2015 Stephen Warren
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
/*
|
|
* This provides pretty formatting of the HTML log file, e.g.
|
|
* - colored bars beside/above log sections for easily parsed delineation.
|
|
* - color highlighting of various messages.
|
|
*/
|
|
|
|
body {
|
|
background-color: black;
|
|
color: #ffffff;
|
|
}
|
|
|
|
pre {
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.implicit {
|
|
color: #808080;
|
|
}
|
|
|
|
.section {
|
|
border-style: solid;
|
|
border-color: #303030;
|
|
border-width: 0px 0px 0px 5px;
|
|
padding-left: 5px
|
|
}
|
|
|
|
.section-header {
|
|
background-color: #303030;
|
|
margin-left: -5px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.section-trailer {
|
|
display: none;
|
|
}
|
|
|
|
.stream {
|
|
border-style: solid;
|
|
border-color: #303030;
|
|
border-width: 0px 0px 0px 5px;
|
|
padding-left: 5px
|
|
}
|
|
|
|
.stream-header {
|
|
background-color: #303030;
|
|
margin-left: -5px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.stream-trailer {
|
|
display: none;
|
|
}
|
|
|
|
.error {
|
|
color: #ff0000
|
|
}
|
|
|
|
.warning {
|
|
color: #ffff00
|
|
}
|
|
|
|
.info {
|
|
color: #808080
|
|
}
|
|
|
|
.action {
|
|
color: #8080ff
|
|
}
|
|
|
|
.status-pass {
|
|
color: #00ff00
|
|
}
|
|
|
|
.status-skipped {
|
|
color: #ffff00
|
|
}
|
|
|
|
.status-xfail {
|
|
color: #ff7f00
|
|
}
|
|
|
|
.status-xpass {
|
|
color: #ff7f00
|
|
}
|
|
|
|
.status-fail {
|
|
color: #ff0000
|
|
}
|