index.html revision 1.1.1.2.4.2 1 1.1.1.2.4.2 yamt <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 1.1.1.2.4.2 yamt "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 1.1.1.2.4.2 yamt <!--
4 1.1.1.2.4.2 yamt Copyright 2012 Google Inc.
5 1.1.1.2.4.2 yamt All rights reserved.
6 1.1.1.2.4.2 yamt
7 1.1.1.2.4.2 yamt Redistribution and use in source and binary forms, with or without
8 1.1.1.2.4.2 yamt modification, are permitted provided that the following conditions are
9 1.1.1.2.4.2 yamt met:
10 1.1.1.2.4.2 yamt
11 1.1.1.2.4.2 yamt * Redistributions of source code must retain the above copyright
12 1.1.1.2.4.2 yamt notice, this list of conditions and the following disclaimer.
13 1.1.1.2.4.2 yamt * Redistributions in binary form must reproduce the above copyright
14 1.1.1.2.4.2 yamt notice, this list of conditions and the following disclaimer in the
15 1.1.1.2.4.2 yamt documentation and/or other materials provided with the distribution.
16 1.1.1.2.4.2 yamt * Neither the name of Google Inc. nor the names of its contributors
17 1.1.1.2.4.2 yamt may be used to endorse or promote products derived from this software
18 1.1.1.2.4.2 yamt without specific prior written permission.
19 1.1.1.2.4.2 yamt
20 1.1.1.2.4.2 yamt THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 1.1.1.2.4.2 yamt "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 1.1.1.2.4.2 yamt LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 1.1.1.2.4.2 yamt A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 1.1.1.2.4.2 yamt OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 1.1.1.2.4.2 yamt SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 1.1.1.2.4.2 yamt LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1.1.2.4.2 yamt DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1.1.2.4.2 yamt THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1.1.2.4.2 yamt (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 1.1.1.2.4.2 yamt OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1.1.2.4.2 yamt -->
32 1.1.1.2.4.2 yamt
33 1.1.1.2.4.2 yamt <html>
34 1.1.1.2.4.2 yamt <head>
35 1.1.1.2.4.2 yamt <title>Tests summary</title>
36 1.1.1.2.4.2 yamt <link rel="stylesheet" type="text/css" href="%%css%%" />
37 1.1.1.2.4.2 yamt </head>
38 1.1.1.2.4.2 yamt
39 1.1.1.2.4.2 yamt <body>
40 1.1.1.2.4.2 yamt
41 1.1.1.2.4.2 yamt
42 1.1.1.2.4.2 yamt <h1>Summary for test action %%action_id%%</h1>
43 1.1.1.2.4.2 yamt
44 1.1.1.2.4.2 yamt <p class="overall">Overall result:
45 1.1.1.2.4.2 yamt %if bad_tests_count
46 1.1.1.2.4.2 yamt <font class="bad">%%bad_tests_count%% TESTS FAILING</font>
47 1.1.1.2.4.2 yamt %else
48 1.1.1.2.4.2 yamt <font class="good">ALL TESTS PASSING</font>
49 1.1.1.2.4.2 yamt %endif
50 1.1.1.2.4.2 yamt </p>
51 1.1.1.2.4.2 yamt
52 1.1.1.2.4.2 yamt <table class="tests-count">
53 1.1.1.2.4.2 yamt <thead>
54 1.1.1.2.4.2 yamt <tr>
55 1.1.1.2.4.2 yamt <td>Test case result</td>
56 1.1.1.2.4.2 yamt <td>Count</td>
57 1.1.1.2.4.2 yamt </tr>
58 1.1.1.2.4.2 yamt </thead>
59 1.1.1.2.4.2 yamt
60 1.1.1.2.4.2 yamt <tbody>
61 1.1.1.2.4.2 yamt %if length(broken_test_cases)
62 1.1.1.2.4.2 yamt <tr class="bad">
63 1.1.1.2.4.2 yamt <td><a href="#broken">Broken</a></td>
64 1.1.1.2.4.2 yamt <td class="numeric">%%length(broken_test_cases)%%</td>
65 1.1.1.2.4.2 yamt </tr>
66 1.1.1.2.4.2 yamt %else
67 1.1.1.2.4.2 yamt <tr>
68 1.1.1.2.4.2 yamt <td>Broken</td>
69 1.1.1.2.4.2 yamt <td class="numeric">%%broken_tests_count%%</td>
70 1.1.1.2.4.2 yamt </tr>
71 1.1.1.2.4.2 yamt %endif
72 1.1.1.2.4.2 yamt %if length(failed_test_cases)
73 1.1.1.2.4.2 yamt <tr class="bad">
74 1.1.1.2.4.2 yamt <td><a href="#failed">Failed</a></td>
75 1.1.1.2.4.2 yamt <td class="numeric">%%length(failed_test_cases)%%</td>
76 1.1.1.2.4.2 yamt </tr>
77 1.1.1.2.4.2 yamt %else
78 1.1.1.2.4.2 yamt <tr>
79 1.1.1.2.4.2 yamt <td>Failed</td>
80 1.1.1.2.4.2 yamt <td class="numeric">%%failed_tests_count%%</td>
81 1.1.1.2.4.2 yamt </tr>
82 1.1.1.2.4.2 yamt %endif
83 1.1.1.2.4.2 yamt <tr>
84 1.1.1.2.4.2 yamt %if length(xfail_test_cases)
85 1.1.1.2.4.2 yamt <td><a href="#xfail">Expected failures</a></td>
86 1.1.1.2.4.2 yamt %else
87 1.1.1.2.4.2 yamt <td>Expected failures</td>
88 1.1.1.2.4.2 yamt %endif
89 1.1.1.2.4.2 yamt <td class="numeric">%%xfail_tests_count%%</td>
90 1.1.1.2.4.2 yamt </tr>
91 1.1.1.2.4.2 yamt <tr>
92 1.1.1.2.4.2 yamt %if length(skipped_test_cases)
93 1.1.1.2.4.2 yamt <td><a href="#skipped">Skipped</a></td>
94 1.1.1.2.4.2 yamt %else
95 1.1.1.2.4.2 yamt <td>Skipped</td>
96 1.1.1.2.4.2 yamt %endif
97 1.1.1.2.4.2 yamt <td class="numeric">%%skipped_tests_count%%</td>
98 1.1.1.2.4.2 yamt </tr>
99 1.1.1.2.4.2 yamt <tr>
100 1.1.1.2.4.2 yamt %if length(passed_test_cases)
101 1.1.1.2.4.2 yamt <td><a href="#passed">Passed</a></td>
102 1.1.1.2.4.2 yamt %else
103 1.1.1.2.4.2 yamt <td>Passed</td>
104 1.1.1.2.4.2 yamt %endif
105 1.1.1.2.4.2 yamt <td class="numeric">%%passed_tests_count%%</td>
106 1.1.1.2.4.2 yamt </tr>
107 1.1.1.2.4.2 yamt </tbody>
108 1.1.1.2.4.2 yamt </table>
109 1.1.1.2.4.2 yamt
110 1.1.1.2.4.2 yamt <p><a href="context.html">Execution context</a></p>
111 1.1.1.2.4.2 yamt
112 1.1.1.2.4.2 yamt
113 1.1.1.2.4.2 yamt %if length(broken_test_cases)
114 1.1.1.2.4.2 yamt <h2><a name="broken">Broken test cases</a></h2>
115 1.1.1.2.4.2 yamt
116 1.1.1.2.4.2 yamt <ul>
117 1.1.1.2.4.2 yamt %loop broken_test_cases iter
118 1.1.1.2.4.2 yamt <li>
119 1.1.1.2.4.2 yamt <a href="%%broken_test_cases_file(iter)%%">%%broken_test_cases(iter)%%</a>
120 1.1.1.2.4.2 yamt </li>
121 1.1.1.2.4.2 yamt %endloop
122 1.1.1.2.4.2 yamt </ul>
123 1.1.1.2.4.2 yamt %endif
124 1.1.1.2.4.2 yamt
125 1.1.1.2.4.2 yamt
126 1.1.1.2.4.2 yamt %if length(failed_test_cases)
127 1.1.1.2.4.2 yamt <h2><a name="failed">Failed test cases</a></h2>
128 1.1.1.2.4.2 yamt
129 1.1.1.2.4.2 yamt <ul>
130 1.1.1.2.4.2 yamt %loop failed_test_cases iter
131 1.1.1.2.4.2 yamt <li>
132 1.1.1.2.4.2 yamt <a href="%%failed_test_cases_file(iter)%%">%%failed_test_cases(iter)%%</a>
133 1.1.1.2.4.2 yamt </li>
134 1.1.1.2.4.2 yamt %endloop
135 1.1.1.2.4.2 yamt </ul>
136 1.1.1.2.4.2 yamt %endif
137 1.1.1.2.4.2 yamt
138 1.1.1.2.4.2 yamt
139 1.1.1.2.4.2 yamt %if length(xfail_test_cases)
140 1.1.1.2.4.2 yamt <h2><a name="xfail">Expected failures</a></h2>
141 1.1.1.2.4.2 yamt
142 1.1.1.2.4.2 yamt <ul>
143 1.1.1.2.4.2 yamt %loop xfail_test_cases iter
144 1.1.1.2.4.2 yamt <li>
145 1.1.1.2.4.2 yamt <a href="%%xfail_test_cases_file(iter)%%">%%xfail_test_cases(iter)%%</a>
146 1.1.1.2.4.2 yamt </li>
147 1.1.1.2.4.2 yamt %endloop
148 1.1.1.2.4.2 yamt </ul>
149 1.1.1.2.4.2 yamt %endif
150 1.1.1.2.4.2 yamt
151 1.1.1.2.4.2 yamt
152 1.1.1.2.4.2 yamt %if length(skipped_test_cases)
153 1.1.1.2.4.2 yamt <h2><a name="skipped">Skipped test cases</a></h2>
154 1.1.1.2.4.2 yamt
155 1.1.1.2.4.2 yamt <ul>
156 1.1.1.2.4.2 yamt %loop skipped_test_cases iter
157 1.1.1.2.4.2 yamt <li>
158 1.1.1.2.4.2 yamt <a href="%%skipped_test_cases_file(iter)%%">%%skipped_test_cases(iter)%%</a>
159 1.1.1.2.4.2 yamt </li>
160 1.1.1.2.4.2 yamt %endloop
161 1.1.1.2.4.2 yamt </ul>
162 1.1.1.2.4.2 yamt %endif
163 1.1.1.2.4.2 yamt
164 1.1.1.2.4.2 yamt
165 1.1.1.2.4.2 yamt %if length(passed_test_cases)
166 1.1.1.2.4.2 yamt <h2><a name="passed">Passed test cases</a></h2>
167 1.1.1.2.4.2 yamt
168 1.1.1.2.4.2 yamt <ul>
169 1.1.1.2.4.2 yamt %loop passed_test_cases iter
170 1.1.1.2.4.2 yamt <li>
171 1.1.1.2.4.2 yamt <a href="%%passed_test_cases_file(iter)%%">%%passed_test_cases(iter)%%</a>
172 1.1.1.2.4.2 yamt </li>
173 1.1.1.2.4.2 yamt %endloop
174 1.1.1.2.4.2 yamt </ul>
175 1.1.1.2.4.2 yamt %endif
176 1.1.1.2.4.2 yamt
177 1.1.1.2.4.2 yamt
178 1.1.1.2.4.2 yamt </body>
179 1.1.1.2.4.2 yamt </html>
180