Reviewed by andersca.
* Scripts/do-webcore-rename: rename KCanvasContainer too
* Scripts/run-webkit-tests: output total time
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14098
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-04-28 Eric Seidel <eseidel@apple.com>
+
+ Reviewed by andersca.
+
+ * Scripts/do-webcore-rename: rename KCanvasContainer too
+ * Scripts/run-webkit-tests: output total time
+
2006-04-26 Mitz Pettel <opendarwin.org@mitzpettel.com>
Reviewed by hyatt. Landed by eseidel.
"detachQSlider" => "detachSlider",
"initWithQSlider" => "initWithSlider",
"qmatrix" => "matrix",
+ "KCanvasContainer" => "RenderSVGContainer",
);
# rename most files with names ending in Impl
my $httpdOpen = 0;
print "Testing ", scalar @tests, " test cases.\n";
+my $overallStartTime = time;
for my $test (@tests) {
next if $test eq 'results.html';
$counts{$result} += 1;
push @{$tests{$result}}, $test;
}
+printf "\n%0.2fs total testing time\n", (time - $overallStartTime) . "";
closeHTTPD();