{% extends "tables/base.html" %} {% comment %} Copyright 2012 Google Inc. All Rights Reserved. This template builds each category details page for the ChromeOS Test Dashboard. These are reachable from the main summary page by choosing a particular netbook within a board table. The view is divided into two areas: test table and plots. The test table includes a variable number of columns that reflect tests and a variable number of rows that represent builds. The table cells are hyperlinks to log data. The plots area is an aggregation of all the plots generated for the given board-netbook platform. {% endcomment %} {% block title %}ChromeOS {{ tpl_category }} Test Details{% endblock %} {% block header_block %} {% include 'tables/details/test_header.html' %} {% endblock %} {% block html_block %}
G Good | A Aborted | W Warn | F Fail | E Error | N None |   Experimental | Click here to learn how to receive test failure emails.
{% for table_dict in tpl_tables %} {% if table_dict.header %} {% endif %} {% endfor %}
{{ table_dict.label }}: {{ tpl_category }} ({{ table_dict.header|length }}) {% if forloop.first %} {% endif %} {% for path, alias, name, experimental in table_dict.header %} {% endfor %} {% for builder, build_number, popup, test_status, chrome_version in table_dict.body %} {% if forloop.parentloop.first %} {% endif %} {% for test_name, host_name, host_info, query_url, host_status, passed_tests, total_tests, crashes in test_status %} {% if host_name %} {% else %} {% endif %} {% endfor %} {% endfor %}
  {% else %} class="tableheader roundedheader"> {% endif %}
{% if path %} {{ alias }} {% else %} {{ alias }} {% endif %}
{{ build_number }} {% if chrome_version %} Chrome Version: {{ chrome_version.0 }} ({{ chrome_version.1 }})
{% endif %} Build Start: {{ popup.0 }}
Build Finish: {{ popup.1 }}
Build Elapsed Time: {{ popup.2 }}
Test Start: {{ popup.3 }}
Test Finish: {{ popup.4 }}
Test Elapsed Time: {{ popup.5 }}
Reported: {{ popup.6 }}
{% if crashes %}{% endif %}
{{ host_status }}*
{{ test_name }}
Host Name:{{ host_name }}
{% for host_key, host_value in host_info %} {{ host_key }}:{{ host_value|wordwrap:60 }}
{% endfor %} {% if crashes %}
*Crash:
{% for crash in crashes %}   {{ crash }}
{% endfor %} {% endif %}
N
{% endblock %}