https://bugs.webkit.org/show_bug.cgi?id=39201
Reviewed by Mark Rowe.
* make-hosted: Make sure to reset test list after every test suite.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@59599
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-05-17 Maciej Stachowiak <mjs@apple.com>
+
+ Reviewed by Mark Rowe.
+
+ Browser-hosted version of SunSpider runs tests twice as many times as advertised
+ https://bugs.webkit.org/show_bug.cgi?id=39201
+
+ * make-hosted: Make sure to reset test list after every test suite.
+
2010-05-07 Adam Roben <aroben@apple.com>
Fix typo in sunspider-compare-results.js that caused incorrect
my $resultsTemplate = do { local $/; <RESULTS_TEMPLATE> };
close RESULTS_TEMPLATE;
-my @tests = ();
-my @categories = ();
-my %uniqueCategories = ();
-
my @suites = ("sunspider-0.9", "sunspider-0.9.1");
foreach my $suite (@suites) {
+ my @tests = ();
+ my @categories = ();
+ my %uniqueCategories = ();
+
mkdir "hosted/${suite}";
open TESTLIST, "<./tests/${suite}/LIST";