Changeset 52137 in webkit


Ignore:
Timestamp:
Dec 14, 2009 10:24:53 PM (14 years ago)
Author:
mjs@apple.com
Message:

2009-12-14 Maciej Stachowiak <mjs@apple.com>

Reviewed by Eric Seidel.

Make sunspider-0.9.1 the default content set (both command-line and hosted)
https://bugs.webkit.org/show_bug.cgi?id=32537

  • hosted/sunspider.html: Change default suite link.
  • sunspider: Change default suite.
  • sunspider-compare-results: Likewise.
Location:
trunk/SunSpider
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SunSpider/ChangeLog

    r52128 r52137  
     12009-12-14  Maciej Stachowiak  <mjs@apple.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Make sunspider-0.9.1 the default content set (both command-line and hosted)
     6        https://bugs.webkit.org/show_bug.cgi?id=32537
     7
     8        * hosted/sunspider.html: Change default suite link.
     9        * sunspider: Change default suite.
     10        * sunspider-compare-results: Likewise.
     11
    1122009-12-14  Maciej Stachowiak  <mjs@apple.com>
    213
  • trunk/SunSpider/hosted/sunspider.html

    r52062 r52137  
    7070</dl>
    7171
    72 <p><b>Current version - sunspider-0.9:</b> <a href="sunspider-0.9/driver.html">Start Now!</a><br>
     72<p><b>Current version - sunspider-0.9.1:</b> <a href="sunspider-0.9.1/driver.html">Start Now!</a><br>
    7373<small>(When you run the benchmark, be patient - it loops through all of the
    7474test cases five times and can take a minute or longer to complete.)</small></p>
  • trunk/SunSpider/sunspider

    r52057 r52137  
    5959  --shark20         Like --shark, but with a 20 microsecond sampling interval
    6060  --shark-cache     Like --shark, but performs a L2 cache-miss sample instead of time sample
    61   --suite           Select a specific benchmark suite. The default is sunspider-0.9
     61  --suite           Select a specific benchmark suite. The default is sunspider-0.9.1
    6262  --ubench          Use microbenchmark suite instead of regular tests. Same as --suite=ubench
    6363  --v8-suite        Use the V8 benchmark suite. Same as --suite=v8-v4
     
    8383$suite = "v8-v4" if ($v8suite);
    8484$suite = "parse-only" if ($parseOnly);
    85 $suite = "sunspider-0.9" if (!$suite);
     85$suite = "sunspider-0.9.1" if (!$suite);
    8686
    8787my $resultDirectory = "${suite}-results";
  • trunk/SunSpider/sunspider-compare-results

    r52057 r52137  
    4040  --help        Show this help message
    4141  --shell       Path to javascript shell
    42   --suite           Select a specific benchmark suite. The default is sunspider-0.9
     42  --suite           Select a specific benchmark suite. The default is sunspider-0.9.1
    4343  --ubench          Use microbenchmark suite instead of regular tests. Same as --suite=ubench
    4444  --v8-suite        Use the V8 benchmark suite. Same as --suite=v8-v4
     
    5656$suite = "v8-v4" if ($v8suite);
    5757$suite = "parse-only" if ($parseOnly);
    58 $suite = "sunspider-0.9" if (!$suite);
     58$suite = "sunspider-0.9.1" if (!$suite);
    5959
    6060my $resultDirectory = "${suite}-results";
Note: See TracChangeset for help on using the changeset viewer.