summaryrefslogtreecommitdiffstats
path: root/scripts/lib/resulttool/template/test_report_full_text.txt
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2019-04-22 06:32:41 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-18 11:28:58 +0100
commit5523c5a7e56e2b0e9ec869d3a8cf8eb2e83781bf (patch)
tree7414d12a0926fd13e42d44736484ae2dd42343af /scripts/lib/resulttool/template/test_report_full_text.txt
parent937b52a3107e4acae2f37b3c3401077ab496985c (diff)
downloadpoky-5523c5a7e56e2b0e9ec869d3a8cf8eb2e83781bf.tar.gz
resulttool: add LTP compliance section
(From OE-Core rev: 0188ada3f40f21637b8cde00dd7c634416e01ddb) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/resulttool/template/test_report_full_text.txt')
-rw-r--r--scripts/lib/resulttool/template/test_report_full_text.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/lib/resulttool/template/test_report_full_text.txt b/scripts/lib/resulttool/template/test_report_full_text.txt
index 6ecd5bce59..d2725b8d01 100644
--- a/scripts/lib/resulttool/template/test_report_full_text.txt
+++ b/scripts/lib/resulttool/template/test_report_full_text.txt
@@ -41,6 +41,23 @@ Ltp Test Result Summary
41There was no LTP Test data 41There was no LTP Test data
42{% endif %} 42{% endif %}
43 43
44{% if haveltpposix %}
45==============================================================================================================
46Ltp Posix Result Summary
47==============================================================================================================
48--------------------------------------------------------------------------------------------------------------
49{{ 'Recipe'.ljust(maxlen['ltpposixtest']) }} | {{ 'Passed'.ljust(maxlen['passed']) }} | {{ 'Failed'.ljust(maxlen['failed']) }} | {{ 'Skipped'.ljust(maxlen['skipped']) }} | {{ 'Time(s)'.ljust(10) }}
50--------------------------------------------------------------------------------------------------------------
51{% for ltpposixtest in ltpposixtests |sort %}
52{{ ltpposixtest.ljust(maxlen['ltpposixtest']) }} | {{ (ltpposixtests[ltpposixtest]['passed']|string).ljust(maxlen['passed']) }} | {{ (ltpposixtests[ltpposixtest]['failed']|string).ljust(maxlen['failed']) }} | {{ (ltpposixtests[ltpposixtest]['skipped']|string).ljust(maxlen['skipped']) }} | {{ (ltpposixtests[ltpposixtest]['duration']|string) }}
53{% endfor %}
54--------------------------------------------------------------------------------------------------------------
55
56{% else %}
57There was no LTP Posix Test data
58{% endif %}
59
60
44 61
45============================================================================================================== 62==============================================================================================================
46Failed test cases (sorted by testseries, ID) 63Failed test cases (sorted by testseries, ID)