summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-12 20:56:04 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-12 20:56:04 +0000
commit937f5613a17f9da568b68d01fa770d9e5592c182 (patch)
tree74a3ccc33ed4e4761790d570a00300a433c98154 /tests
parent28b54109d754b910c9e0e89a0cdeaf72c2493aa4 (diff)
tests: Minor cleanup
git-svn-id: http://pugixml.googlecode.com/svn/trunk@418 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests')
-rw-r--r--tests/autotest-report.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/autotest-report.pl b/tests/autotest-report.pl
index 9379c28..7f269c9 100644
--- a/tests/autotest-report.pl
+++ b/tests/autotest-report.pl
@@ -76,7 +76,6 @@ foreach $tool (@toolsetarray)
foreach (@configurationarray)
{
- my $cmdline = "jam toolset=" . (split /\s+/, $tool)[0] . " defines=" . (split /\s+/, $_)[1] . " configuration=" . (split /\s+/, $_)[0];
my $info = $results{$tool}{$_};
if (!defined $$info{result})
@@ -87,7 +86,7 @@ foreach $tool (@toolsetarray)
{
my ($coverage_pugixml, $coverage_pugixpath) = ($$info{coverage_pugixml}, $$info{coverage_pugixpath});
- print "<td bgcolor='#00ff00' align='center' title='$cmdline'>pass";
+ print "<td bgcolor='#00ff00' align='center'>pass";
if ($coverage_pugixml > 0 || $coverage_pugixpath > 0)
{
@@ -98,7 +97,7 @@ foreach $tool (@toolsetarray)
}
else
{
- print "<td bgcolor='#ff0000' align='center' title='$cmdline'>fail</td>"
+ print "<td bgcolor='#ff0000' align='center'>fail</td>"
}
}