Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: blinky_max32630fthr
tools/ci_templates/tests_build/build_report.html@0:5c4d7b2438d3, 2016-11-11 (annotated)
- Committer:
- switches
- Date:
- Fri Nov 11 20:59:50 2016 +0000
- Revision:
- 0:5c4d7b2438d3
Initial commit
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| switches | 0:5c4d7b2438d3 | 1 | <div class="toggleshow{% if report.failing|length == 0 %} toggleshow-hide{% endif %}"> |
| switches | 0:5c4d7b2438d3 | 2 | <h3> |
| switches | 0:5c4d7b2438d3 | 3 | <a href="#" class="toggleshow-title"> |
| switches | 0:5c4d7b2438d3 | 4 | <span class="toggleshow-arrow"></span> |
| switches | 0:5c4d7b2438d3 | 5 | {% if report.failing|length > 0 %} |
| switches | 0:5c4d7b2438d3 | 6 | <span class="redbold">[FAIL]</span> |
| switches | 0:5c4d7b2438d3 | 7 | {% else %} |
| switches | 0:5c4d7b2438d3 | 8 | <span class="greenbold">[PASS]</span> |
| switches | 0:5c4d7b2438d3 | 9 | {% endif %} |
| switches | 0:5c4d7b2438d3 | 10 | |
| switches | 0:5c4d7b2438d3 | 11 | {{report.target}} - Passing: {{report.passing|length}}, Failing: {{report.failing|length}}, Skipped: {{report.skipped|length}} |
| switches | 0:5c4d7b2438d3 | 12 | </a> |
| switches | 0:5c4d7b2438d3 | 13 | </h3> |
| switches | 0:5c4d7b2438d3 | 14 | |
| switches | 0:5c4d7b2438d3 | 15 | <div class="toggleshow-body"> |
| switches | 0:5c4d7b2438d3 | 16 | <h4 class="redbold">Failing</h4> |
| switches | 0:5c4d7b2438d3 | 17 | {% with build = report.failing %} |
| switches | 0:5c4d7b2438d3 | 18 | {% include 'tests_build/build_report_table.html' %} |
| switches | 0:5c4d7b2438d3 | 19 | {% endwith %} |
| switches | 0:5c4d7b2438d3 | 20 | |
| switches | 0:5c4d7b2438d3 | 21 | <h4 class="greenbold">Passing</h4> |
| switches | 0:5c4d7b2438d3 | 22 | {% with build = report.passing %} |
| switches | 0:5c4d7b2438d3 | 23 | {% include 'tests_build/build_report_table.html' %} |
| switches | 0:5c4d7b2438d3 | 24 | {% endwith %} |
| switches | 0:5c4d7b2438d3 | 25 | |
| switches | 0:5c4d7b2438d3 | 26 | <h4>Skipped</h4> |
| switches | 0:5c4d7b2438d3 | 27 | {% with build = report.skipped %} |
| switches | 0:5c4d7b2438d3 | 28 | {% include 'tests_build/build_report_table.html' %} |
| switches | 0:5c4d7b2438d3 | 29 | {% endwith %} |
| switches | 0:5c4d7b2438d3 | 30 | </div> |
| switches | 0:5c4d7b2438d3 | 31 | </div> |