summaryrefslogtreecommitdiff
path: root/source4/selftest/output/html.pm
diff options
context:
space:
mode:
Diffstat (limited to 'source4/selftest/output/html.pm')
-rw-r--r--source4/selftest/output/html.pm10
1 files changed, 7 insertions, 3 deletions
diff --git a/source4/selftest/output/html.pm b/source4/selftest/output/html.pm
index 44846dc9dd..2a2a12b63d 100644
--- a/source4/selftest/output/html.pm
+++ b/source4/selftest/output/html.pm
@@ -315,14 +315,18 @@ sub missing_env($$$)
print INDEX "</tr>\n";
}
-sub skip_testsuite($$$)
+sub skip_testsuite($$$$)
{
- my ($self, $envname, $name) = @_;
+ my ($self, $envname, $name, $reason) = @_;
print INDEX "<tr>\n";
print INDEX " <td class=\"testSuite\">$name</td>\n";
print INDEX " <td class=\"environment\">$envname</td>\n";
- print INDEX " <td class=\"resultSkipped\">SKIPPED</td>\n";
+ if ($reason) {
+ print INDEX " <td class=\"resultSkipped\">SKIPPED - $reason</td>\n";
+ } else {
+ print INDEX " <td class=\"resultSkipped\">SKIPPED</td>\n";
+ }
print INDEX "</tr>\n";
}