no strict 'refs';
my $name = ${ref($self)."::NAME"} || (split('::', ref($self)))[-1];
my $descr = ${ref($self)."::DESCR"} || "N/A";
+ my $notes = ${ref($self)."::NOTES"} || "N/A";
return {
'name' => $name,
'descr' => $descr,
+ 'notes' => $notes,
'count' => $self->{'count'},
'pass' => $self->{'successful'},
'fail' => $self->{'failed'},
use base 'Varnish::Test::Case';
our $DESCR = "Tests Varnish's ability to handle pipelined requests.";
+our $NOTES = "1.1.2 is expected to fail one of two subtests.";
our %CONTENT = (
'Gibson' => "The sky above the port was the color of television, tuned to a dead channel.",
.pass { width: 5%; }
.fail { width: 5%; }
.time { width: 5%; text-align: right; }
-.descr { width: 70%; }
+.descr { width: 50%; }
+.notes { width: 20%; }
</style>
</head>
<!-- USE ms = format('%5.3f') -->
<th class="fail">Fail</th>
<th class="time">Time</th>
<th class="descr">Description</th>
+ <th class="notes">Notes</th>
</tr>
</thead>
<!-- FOREACH case = cases -->
<td class="fail"><!-- case.fail --></td>
<td class="time"><!-- ms(case.time) --> s</td>
<td class="descr"><!-- case.descr --></td>
+ <td class="notes"><!-- case.notes --></td>
</tr>
<!-- END -->
<tfoot>
<td class="fail"><!-- fail --></td>
<td class="time"><!-- ms(time) --> s</td>
<td class="descr"> </td>
+ <td class="notes"> </td>
</tr>
</tfoot>
</table>