Changeset 63463 in webkit


Ignore:
Timestamp:
Jul 15, 2010 2:38:32 PM (14 years ago)
Author:
Stephanie Lewis
Message:

SunSpider: http://bugs.webkit.org/show_bug.cgi?id=42406
Output location of results file.

Reviewed by Geoff Garen.

  • sunspider:

WebKitTools: http://bugs.webkit.org/show_bug.cgi?id=42406
Make SunSpider work better with roots.

Reviewed by Geoff Garen.

  • Scripts/sunspider-compare-results: fix argument bug
  • Scripts/webkitdirs.pm: look inside JavaScriptCore if jsc isn't top-level.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/SunSpider/ChangeLog

    r59599 r63463  
     12010-07-15  Stephanie Lewis  <slewis@apple.com>
     2
     3        Reviewed by Geoff Garen.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=42406
     6        Output location of results file.
     7
     8        * sunspider:
     9
    1102010-05-17  Maciej Stachowiak  <mjs@apple.com>
    211
  • trunk/SunSpider/sunspider

    r52137 r63463  
    230230system("$jsShellPath", "-f", $prefixFile, "-f", $resultsFile, "-f", "resources/sunspider-analyze-results.js");
    231231
     232print("\nResults are located at $resultsFile\n");
     233
    232234if ($runShark) {
    233235    my $newestMShark = newestFile(".", qr/\.mshark$/);
  • trunk/WebKitTools/ChangeLog

    r63456 r63463  
     12010-07-15  Stephanie Lewis  <slewis@apple.com>
     2
     3        Reviewed by Geoff Garen.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=42406
     6        Make SunSpider work better with roots.
     7
     8        * Scripts/sunspider-compare-results: fix argument bug
     9        * Scripts/webkitdirs.pm: look inside JavaScriptCore if jsc isn't top-level.
     10
    1112010-07-15  Brady Eidson  <beidson@apple.com>
    212
  • trunk/WebKitTools/Scripts/sunspider-compare-results

    r52077 r63463  
    5656EOF
    5757
    58 GetOptions('root=s' => sub { my ($argName, $value); setConfigurationProductDir(Cwd::abs_path($value)); },
     58GetOptions('root=s' => sub { my ($argName, $value) = @_; setConfigurationProductDir(Cwd::abs_path($value)); },
    5959           'suite=s' => \$suite,
    6060           'ubench' => \$ubench,
  • trunk/WebKitTools/Scripts/webkitdirs.pm

    r62742 r63463  
    259259    my $jscName = "jsc";
    260260    $jscName .= "_debug"  if (isCygwin() && ($configuration eq "Debug"));
    261     return "$productDir/$jscName";
     261    return "$productDir/$jscName" if -e "$productDir/$jscName";
     262    return "$productDir/JavaScriptCore.framework/Resources/$jscName";
    262263}
    263264
Note: See TracChangeset for help on using the changeset viewer.