diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-27 17:10:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-27 18:04:14 +0000 |
commit | 2268bf470cb3fbb2c5d12718465b53c3fbbbb67b (patch) | |
tree | 0c9fd10b66e61d4458c5b8b562426fc279858f2e | |
parent | f11237c0aacd127f6c2705dc869771dae75229f6 (diff) | |
download | poky-2268bf470cb3fbb2c5d12718465b53c3fbbbb67b.tar.gz |
resulttool/report: Ensure ptest results are sorted
(From OE-Core rev: 3ec9a6288793f384bf108d7194cf50147485fa28)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/resulttool/template/test_report_full_text.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/resulttool/template/test_report_full_text.txt b/scripts/lib/resulttool/template/test_report_full_text.txt index 5081594cf2..590f35c7dd 100644 --- a/scripts/lib/resulttool/template/test_report_full_text.txt +++ b/scripts/lib/resulttool/template/test_report_full_text.txt | |||
@@ -16,7 +16,7 @@ PTest Result Summary | |||
16 | -------------------------------------------------------------------------------------------------------------- | 16 | -------------------------------------------------------------------------------------------------------------- |
17 | {{ 'Recipe'.ljust(maxlen['ptest']) }} | {{ 'Passed'.ljust(maxlen['passed']) }} | {{ 'Failed'.ljust(maxlen['failed']) }} | {{ 'Skipped'.ljust(maxlen['skipped']) }} | {{ 'Time(s)'.ljust(10) }} | 17 | {{ 'Recipe'.ljust(maxlen['ptest']) }} | {{ 'Passed'.ljust(maxlen['passed']) }} | {{ 'Failed'.ljust(maxlen['failed']) }} | {{ 'Skipped'.ljust(maxlen['skipped']) }} | {{ 'Time(s)'.ljust(10) }} |
18 | -------------------------------------------------------------------------------------------------------------- | 18 | -------------------------------------------------------------------------------------------------------------- |
19 | {% for ptest in ptests %} | 19 | {% for ptest in ptests |sort %} |
20 | {{ ptest.ljust(maxlen['ptest']) }} | {{ (ptests[ptest]['passed']|string).ljust(maxlen['passed']) }} | {{ (ptests[ptest]['failed']|string).ljust(maxlen['failed']) }} | {{ (ptests[ptest]['skipped']|string).ljust(maxlen['skipped']) }} | {{ (ptests[ptest]['duration']|string) }} | 20 | {{ ptest.ljust(maxlen['ptest']) }} | {{ (ptests[ptest]['passed']|string).ljust(maxlen['passed']) }} | {{ (ptests[ptest]['failed']|string).ljust(maxlen['failed']) }} | {{ (ptests[ptest]['skipped']|string).ljust(maxlen['skipped']) }} | {{ (ptests[ptest]['duration']|string) }} |
21 | {% endfor %} | 21 | {% endfor %} |
22 | -------------------------------------------------------------------------------------------------------------- | 22 | -------------------------------------------------------------------------------------------------------------- |