Changeset 63463 in webkit
- Timestamp:
- Jul 15, 2010, 2:38:32 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SunSpider/ChangeLog
r59599 r63463 1 2010-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 1 10 2010-05-17 Maciej Stachowiak <mjs@apple.com> 2 11 -
trunk/SunSpider/sunspider
r52137 r63463 230 230 system("$jsShellPath", "-f", $prefixFile, "-f", $resultsFile, "-f", "resources/sunspider-analyze-results.js"); 231 231 232 print("\nResults are located at $resultsFile\n"); 233 232 234 if ($runShark) { 233 235 my $newestMShark = newestFile(".", qr/\.mshark$/); -
trunk/WebKitTools/ChangeLog
r63456 r63463 1 2010-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 1 11 2010-07-15 Brady Eidson <beidson@apple.com> 2 12 -
trunk/WebKitTools/Scripts/sunspider-compare-results
r52077 r63463 56 56 EOF 57 57 58 GetOptions('root=s' => sub { my ($argName, $value) ; setConfigurationProductDir(Cwd::abs_path($value)); },58 GetOptions('root=s' => sub { my ($argName, $value) = @_; setConfigurationProductDir(Cwd::abs_path($value)); }, 59 59 'suite=s' => \$suite, 60 60 'ubench' => \$ubench, -
trunk/WebKitTools/Scripts/webkitdirs.pm
r62742 r63463 259 259 my $jscName = "jsc"; 260 260 $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"; 262 263 } 263 264
Note:
See TracChangeset
for help on using the changeset viewer.