+2007-10-28 Adam Roben <aroben@apple.com>
+
+ Fix SunSpider on Windows
+
+ Reviewed by Eric.
+
+ * sunspider: Don't use colons in filenames.
+
2007-10-28 Darin Adler <darin@apple.com>
Reviewed by Adam.
sub dumpToFile($$)
{
my ($contents, $path) = @_;
- open FILE, ">", $path or die;
+ open FILE, ">", $path or die "Failed to open $path";
print FILE $contents;
close FILE;
}
close TESTLIST;
}
-my $timeString = strftime "%Y-%m-%d-%H:%M:%S", localtime $^T;
+my $timeString = strftime "%Y-%m-%d-%H.%M.%S", localtime $^T;
my $prefixFile = "tmp/sunspider-test-prefix.js";
my $resultsFile = "tmp/sunspider-results-$timeString.js";