1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

r24869: Print command that was executed.

(This used to be commit 9aabcafba612afafb1c3260b79a899ea463f8d32)
This commit is contained in:
Jelmer Vernooij 2007-09-01 21:02:57 +00:00 committed by Gerald (Jerry) Carter
parent 6131ff85d5
commit 2aea6fe95f
2 changed files with 6 additions and 0 deletions

View File

@ -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);

View File

@ -122,3 +122,8 @@ div.duration
text-align: right;
font-weight: bold;
}
div.command
{
background-color: gray;
}