summaryrefslogtreecommitdiff
path: root/source4/selftest/output/html.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-09-02 02:07:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:03:27 -0500
commitac2a7014837b1ce135e732fd7a9b950d9fbc1401 (patch)
tree57e68293fe845fd73cca4e1cf867c071ede8b7ff /source4/selftest/output/html.pm
parent0271566a5b3211735faad67e37e2d0474996b710 (diff)
downloadsamba-ac2a7014837b1ce135e732fd7a9b950d9fbc1401.tar.gz
samba-ac2a7014837b1ce135e732fd7a9b950d9fbc1401.tar.bz2
samba-ac2a7014837b1ce135e732fd7a9b950d9fbc1401.zip
r24882: Use the torture API in BASE-CHARSET.
(This used to be commit 93910d92cd431add876e98a12712253bee8c52e7)
Diffstat (limited to 'source4/selftest/output/html.pm')
-rw-r--r--source4/selftest/output/html.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/source4/selftest/output/html.pm b/source4/selftest/output/html.pm
index 2a2a12b63d..7f5d128983 100644
--- a/source4/selftest/output/html.pm
+++ b/source4/selftest/output/html.pm
@@ -309,10 +309,7 @@ sub missing_env($$$)
{
my ($self, $name, $envname) = @_;
- print INDEX "<tr>\n";
- print INDEX " <td class=\"testSuite\">$name</td>\n";
- print INDEX " <td class=\"resultSkipped\" colspan=\"2\">SKIPPED - environment `$envname` not available!</td>\n";
- print INDEX "</tr>\n";
+ $self->skip_testsuite($envname, $name, "environment `$envname` not available!");
}
sub skip_testsuite($$$$)