diff options
Diffstat (limited to 'SunSpider/make-hosted')
-rwxr-xr-x | SunSpider/make-hosted | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/SunSpider/make-hosted b/SunSpider/make-hosted index fb4608a..65b30c1 100755 --- a/SunSpider/make-hosted +++ b/SunSpider/make-hosted @@ -37,14 +37,14 @@ open RESULTS_TEMPLATE, "<resources/results-TEMPLATE.html"; 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"; |