+2011-08-11 Mark Rowe <mrowe@apple.com>
+
+ Fix sunspider-compare-results to default to the same suite version as the sunspider script.
+
+ Rubber-stamped by Maciej Stachowiak.
+
+ * sunspider-compare-results:
+
2011-07-02 Maciej Stachowiak <mjs@apple.com>
Update SunSpider versioning to 1.0
Usage: $programName --shell=[path] [options] FILE FILE
--help Show this help message
--shell Path to javascript shell
- --suite Select a specific benchmark suite. The default is sunspider-0.9.1
+ --suite Select a specific benchmark suite. The default is sunspider-1.0
--ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
--v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4
--parse-only Compare the parse-only benchmark results
$suite = "ubench" if ($ubench);
$suite = "v8-v4" if ($v8suite);
$suite = "parse-only" if ($parseOnly);
-$suite = "sunspider-0.9.1" if (!$suite);
+$suite = "sunspider-1.0" if (!$suite);
my $resultDirectory = "${suite}-results";