xref: /minix3/external/bsd/kyua-cli/dist/misc/index.html (revision 84d9c625bfea59e274550651111ae9edfdc40fbd)
111be35a1SLionel Sambuc<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
211be35a1SLionel Sambuc          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
311be35a1SLionel Sambuc<!--
411be35a1SLionel Sambuc  Copyright 2012 Google Inc.
511be35a1SLionel Sambuc  All rights reserved.
611be35a1SLionel Sambuc
711be35a1SLionel Sambuc  Redistribution and use in source and binary forms, with or without
811be35a1SLionel Sambuc  modification, are permitted provided that the following conditions are
911be35a1SLionel Sambuc  met:
1011be35a1SLionel Sambuc
1111be35a1SLionel Sambuc  * Redistributions of source code must retain the above copyright
1211be35a1SLionel Sambuc    notice, this list of conditions and the following disclaimer.
1311be35a1SLionel Sambuc  * Redistributions in binary form must reproduce the above copyright
1411be35a1SLionel Sambuc    notice, this list of conditions and the following disclaimer in the
1511be35a1SLionel Sambuc    documentation and/or other materials provided with the distribution.
1611be35a1SLionel Sambuc  * Neither the name of Google Inc. nor the names of its contributors
1711be35a1SLionel Sambuc    may be used to endorse or promote products derived from this software
1811be35a1SLionel Sambuc    without specific prior written permission.
1911be35a1SLionel Sambuc
2011be35a1SLionel Sambuc  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2111be35a1SLionel Sambuc  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2211be35a1SLionel Sambuc  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2311be35a1SLionel Sambuc  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2411be35a1SLionel Sambuc  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2511be35a1SLionel Sambuc  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2611be35a1SLionel Sambuc  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2711be35a1SLionel Sambuc  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2811be35a1SLionel Sambuc  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2911be35a1SLionel Sambuc  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3011be35a1SLionel Sambuc  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3111be35a1SLionel Sambuc-->
3211be35a1SLionel Sambuc
3311be35a1SLionel Sambuc<html>
3411be35a1SLionel Sambuc<head>
3511be35a1SLionel Sambuc  <title>Tests summary</title>
3611be35a1SLionel Sambuc  <link rel="stylesheet" type="text/css" href="%%css%%" />
3711be35a1SLionel Sambuc</head>
3811be35a1SLionel Sambuc
3911be35a1SLionel Sambuc<body>
4011be35a1SLionel Sambuc
4111be35a1SLionel Sambuc
4211be35a1SLionel Sambuc<h1>Summary for test action %%action_id%%</h1>
4311be35a1SLionel Sambuc
4411be35a1SLionel Sambuc<p class="overall">Overall result:
4511be35a1SLionel Sambuc%if bad_tests_count
4611be35a1SLionel Sambuc  <font class="bad">%%bad_tests_count%% TESTS FAILING</font>
4711be35a1SLionel Sambuc%else
4811be35a1SLionel Sambuc  <font class="good">ALL TESTS PASSING</font>
4911be35a1SLionel Sambuc%endif
5011be35a1SLionel Sambuc</p>
5111be35a1SLionel Sambuc
5211be35a1SLionel Sambuc<table class="tests-count">
5311be35a1SLionel Sambuc  <thead>
5411be35a1SLionel Sambuc    <tr>
5511be35a1SLionel Sambuc      <td>Test case result</td>
5611be35a1SLionel Sambuc      <td>Count</td>
5711be35a1SLionel Sambuc    </tr>
5811be35a1SLionel Sambuc  </thead>
5911be35a1SLionel Sambuc
6011be35a1SLionel Sambuc  <tbody>
6111be35a1SLionel Sambuc%if length(broken_test_cases)
6211be35a1SLionel Sambuc    <tr class="bad">
6311be35a1SLionel Sambuc      <td><a href="#broken">Broken</a></td>
6411be35a1SLionel Sambuc      <td class="numeric">%%length(broken_test_cases)%%</td>
6511be35a1SLionel Sambuc    </tr>
6611be35a1SLionel Sambuc%else
6711be35a1SLionel Sambuc    <tr>
6811be35a1SLionel Sambuc      <td>Broken</td>
69*84d9c625SLionel Sambuc      <td class="numeric">%%broken_tests_count%%</td>
7011be35a1SLionel Sambuc    </tr>
7111be35a1SLionel Sambuc%endif
7211be35a1SLionel Sambuc%if length(failed_test_cases)
7311be35a1SLionel Sambuc    <tr class="bad">
7411be35a1SLionel Sambuc      <td><a href="#failed">Failed</a></td>
7511be35a1SLionel Sambuc      <td class="numeric">%%length(failed_test_cases)%%</td>
7611be35a1SLionel Sambuc    </tr>
7711be35a1SLionel Sambuc%else
7811be35a1SLionel Sambuc    <tr>
7911be35a1SLionel Sambuc      <td>Failed</td>
80*84d9c625SLionel Sambuc      <td class="numeric">%%failed_tests_count%%</td>
8111be35a1SLionel Sambuc    </tr>
8211be35a1SLionel Sambuc%endif
8311be35a1SLionel Sambuc    <tr>
8411be35a1SLionel Sambuc%if length(xfail_test_cases)
8511be35a1SLionel Sambuc      <td><a href="#xfail">Expected failures</a></td>
8611be35a1SLionel Sambuc%else
8711be35a1SLionel Sambuc      <td>Expected failures</td>
8811be35a1SLionel Sambuc%endif
89*84d9c625SLionel Sambuc      <td class="numeric">%%xfail_tests_count%%</td>
9011be35a1SLionel Sambuc    </tr>
9111be35a1SLionel Sambuc    <tr>
9211be35a1SLionel Sambuc%if length(skipped_test_cases)
9311be35a1SLionel Sambuc      <td><a href="#skipped">Skipped</a></td>
9411be35a1SLionel Sambuc%else
9511be35a1SLionel Sambuc      <td>Skipped</td>
9611be35a1SLionel Sambuc%endif
97*84d9c625SLionel Sambuc      <td class="numeric">%%skipped_tests_count%%</td>
9811be35a1SLionel Sambuc    </tr>
9911be35a1SLionel Sambuc    <tr>
10011be35a1SLionel Sambuc%if length(passed_test_cases)
10111be35a1SLionel Sambuc      <td><a href="#passed">Passed</a></td>
10211be35a1SLionel Sambuc%else
10311be35a1SLionel Sambuc      <td>Passed</td>
10411be35a1SLionel Sambuc%endif
105*84d9c625SLionel Sambuc      <td class="numeric">%%passed_tests_count%%</td>
10611be35a1SLionel Sambuc    </tr>
10711be35a1SLionel Sambuc  </tbody>
10811be35a1SLionel Sambuc</table>
10911be35a1SLionel Sambuc
11011be35a1SLionel Sambuc<p><a href="context.html">Execution context</a></p>
11111be35a1SLionel Sambuc
11211be35a1SLionel Sambuc
11311be35a1SLionel Sambuc%if length(broken_test_cases)
11411be35a1SLionel Sambuc<h2><a name="broken">Broken test cases</a></h2>
11511be35a1SLionel Sambuc
11611be35a1SLionel Sambuc<ul>
11711be35a1SLionel Sambuc%loop broken_test_cases iter
11811be35a1SLionel Sambuc  <li>
11911be35a1SLionel Sambuc    <a href="%%broken_test_cases_file(iter)%%">%%broken_test_cases(iter)%%</a>
12011be35a1SLionel Sambuc  </li>
12111be35a1SLionel Sambuc%endloop
12211be35a1SLionel Sambuc</ul>
12311be35a1SLionel Sambuc%endif
12411be35a1SLionel Sambuc
12511be35a1SLionel Sambuc
12611be35a1SLionel Sambuc%if length(failed_test_cases)
12711be35a1SLionel Sambuc<h2><a name="failed">Failed test cases</a></h2>
12811be35a1SLionel Sambuc
12911be35a1SLionel Sambuc<ul>
13011be35a1SLionel Sambuc%loop failed_test_cases iter
13111be35a1SLionel Sambuc  <li>
13211be35a1SLionel Sambuc    <a href="%%failed_test_cases_file(iter)%%">%%failed_test_cases(iter)%%</a>
13311be35a1SLionel Sambuc  </li>
13411be35a1SLionel Sambuc%endloop
13511be35a1SLionel Sambuc</ul>
13611be35a1SLionel Sambuc%endif
13711be35a1SLionel Sambuc
13811be35a1SLionel Sambuc
13911be35a1SLionel Sambuc%if length(xfail_test_cases)
14011be35a1SLionel Sambuc<h2><a name="xfail">Expected failures</a></h2>
14111be35a1SLionel Sambuc
14211be35a1SLionel Sambuc<ul>
14311be35a1SLionel Sambuc%loop xfail_test_cases iter
14411be35a1SLionel Sambuc  <li>
14511be35a1SLionel Sambuc    <a href="%%xfail_test_cases_file(iter)%%">%%xfail_test_cases(iter)%%</a>
14611be35a1SLionel Sambuc  </li>
14711be35a1SLionel Sambuc%endloop
14811be35a1SLionel Sambuc</ul>
14911be35a1SLionel Sambuc%endif
15011be35a1SLionel Sambuc
15111be35a1SLionel Sambuc
15211be35a1SLionel Sambuc%if length(skipped_test_cases)
15311be35a1SLionel Sambuc<h2><a name="skipped">Skipped test cases</a></h2>
15411be35a1SLionel Sambuc
15511be35a1SLionel Sambuc<ul>
15611be35a1SLionel Sambuc%loop skipped_test_cases iter
15711be35a1SLionel Sambuc  <li>
15811be35a1SLionel Sambuc    <a href="%%skipped_test_cases_file(iter)%%">%%skipped_test_cases(iter)%%</a>
15911be35a1SLionel Sambuc  </li>
16011be35a1SLionel Sambuc%endloop
16111be35a1SLionel Sambuc</ul>
16211be35a1SLionel Sambuc%endif
16311be35a1SLionel Sambuc
16411be35a1SLionel Sambuc
16511be35a1SLionel Sambuc%if length(passed_test_cases)
16611be35a1SLionel Sambuc<h2><a name="passed">Passed test cases</a></h2>
16711be35a1SLionel Sambuc
16811be35a1SLionel Sambuc<ul>
16911be35a1SLionel Sambuc%loop passed_test_cases iter
17011be35a1SLionel Sambuc  <li>
17111be35a1SLionel Sambuc    <a href="%%passed_test_cases_file(iter)%%">%%passed_test_cases(iter)%%</a>
17211be35a1SLionel Sambuc  </li>
17311be35a1SLionel Sambuc%endloop
17411be35a1SLionel Sambuc</ul>
17511be35a1SLionel Sambuc%endif
17611be35a1SLionel Sambuc
17711be35a1SLionel Sambuc
17811be35a1SLionel Sambuc</body>
17911be35a1SLionel Sambuc</html>
180