diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-09-01 21:02:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:03:23 -0500 |
commit | 2aea6fe95f2788b080cb0261a1efd6907cf4d6d1 (patch) | |
tree | 8b2edf2142f376ac249d85d4f531f62afa7cc40c | |
parent | 6131ff85d550b4c7b2f45e0860c5d90da61cc6b6 (diff) | |
download | samba-2aea6fe95f2788b080cb0261a1efd6907cf4d6d1.tar.gz samba-2aea6fe95f2788b080cb0261a1efd6907cf4d6d1.tar.bz2 samba-2aea6fe95f2788b080cb0261a1efd6907cf4d6d1.zip |
r24869: Print command that was executed.
(This used to be commit 9aabcafba612afafb1c3260b79a899ea463f8d32)
-rw-r--r-- | source4/selftest/output/html.pm | 1 | ||||
-rw-r--r-- | source4/selftest/output/testresults.css | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/source4/selftest/output/html.pm b/source4/selftest/output/html.pm index c4f94fb6b0..44846dc9dd 100644 --- a/source4/selftest/output/html.pm +++ b/source4/selftest/output/html.pm @@ -118,6 +118,7 @@ sub end_testsuite($$$$$) print TEST "</table>\n"; + print TEST "<div class=\"command\">$state->{CMD}</div>\n"; print TEST "<div class=\"duration\">Duration: " . (time() - $state->{START_TIME}) . "s</div>\n"; $self->print_html_footer(*TEST); diff --git a/source4/selftest/output/testresults.css b/source4/selftest/output/testresults.css index 56c4b0ead4..66d1d6b2ad 100644 --- a/source4/selftest/output/testresults.css +++ b/source4/selftest/output/testresults.css @@ -122,3 +122,8 @@ div.duration text-align: right; font-weight: bold; } + +div.command +{ + background-color: gray; +} |