summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKévin Petit <kevin.petit@arm.com>2015-02-02 12:25:48 +0000
committerKévin Petit <kevin.petit@arm.com>2015-02-02 12:25:48 +0000
commitbde3b6ecac35398961a9a9f67e1fcc6c524a34e4 (patch)
tree3f9aa0060e586fb86d48879c62cc9d3219c3c993 /docs
parent0994e64dbc96b7a536096f9fbd4c099d1c8cc84a (diff)
report: allow to select multiple reports
It is now possible to pass a list of desired reports in the TEST_REPORTS variable. Accepted values are: uart:raw uart:junit semihosting:raw semihosting:junit Change-Id: Ic3d46fdd5078a362799cc85bc776eb1224b7b97c Signed-off-by: Kévin Petit <kevin.petit@arm.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/user-guide.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/user-guide.md b/docs/user-guide.md
index 31de880..3f15655 100644
--- a/docs/user-guide.md
+++ b/docs/user-guide.md
@@ -126,9 +126,13 @@ performed.
each CPU write part of the message in a different color. It can take either
0 (disabled) or 1 (enabled) as values. 0 is the default.
-* `TEST_REPORT_FORMAT`: Format of the test report. It can take either 'raw'
- (text output on the console) or 'junit' (XML Junit format). The default is
- 'raw'.
+* `TEST_REPORTS`: List of desired test reports. Test reports are described by
+ a space-separated list of colon-separated pairs of report destination and
+ report type. Valid destinations are: 'uart' and 'semihosting'. Valid report
+ types are 'raw' (text output) or 'junit' (XML Junit format). The default is
+ 'uart:raw', that is a text report printed on the UART. Here's an example of
+ multiple reports: 'uart:raw semihosting:junit'. The files stored on
+ semihosting are named 'tftf_report_junit.xml' and 'tftf_report_raw.txt'.
* `TESTS_FILE`: Path to the XML file listing the tests to run. Default is
`tests/tests.xml`.