[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:31:36 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 38cc6017d54239c5b7a9b72fead7e60bd4d1746c
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 22 00:09:19 2009 +0000

    2009-09-21  Csaba Osztrogonac  <oszi at inf.u-szeged.hu>
    
            Reviewed by Maciej Stachowiak.
    
            --parse-only parameter wasn't passed to SunSpider/sunspider script.
            https://bugs.webkit.org/show_bug.cgi?id=29611
    
            * Scripts/run-sunspider: Missing parameter passing added.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@48611 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 4bd8992..a49125c 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2009-09-21  Csaba Osztrogonac  <oszi at inf.u-szeged.hu>
+
+        Reviewed by Maciej Stachowiak.
+
+        --parse-only parameter wasn't passed to SunSpider/sunspider script.
+        https://bugs.webkit.org/show_bug.cgi?id=29611
+
+        * Scripts/run-sunspider: Missing parameter passing added.
+
 2009-09-20  David Kilzer  <ddkilzer at apple.com>
 
         <http://webkit.org/b/29521> run-webkit-tests: use require instead eval to load DumpRenderTreeSupport module
diff --git a/WebKitTools/Scripts/run-sunspider b/WebKitTools/Scripts/run-sunspider
index 154c9fa..f6bc779 100755
--- a/WebKitTools/Scripts/run-sunspider
+++ b/WebKitTools/Scripts/run-sunspider
@@ -43,6 +43,7 @@ my $runShark20 = 0;
 my $runSharkCache = 0;
 my $ubench = 0;
 my $v8 = 0;
+my $parseonly = 0;
 my $setBaseline = 0;
 my $showHelp = 0;
 my $testsPattern;
@@ -60,6 +61,7 @@ Usage: $programName [options] [options to pass to build system]
   --shark-cache     Like --shark, but performs a L2 cache-miss sample instead of time sample
   --ubench          Use microbenchmark suite instead of regular tests (to check for core execution regressions)
   --v8              Use the V8 benchmark suite.
+  --parse-only      Use the parse-only benchmark suite
 EOF
 
 GetOptions('root=s' => sub { my ($x, $value) = @_; $root = $value; setConfigurationProductDir(Cwd::abs_path($root)); },
@@ -70,6 +72,7 @@ GetOptions('root=s' => sub { my ($x, $value) = @_; $root = $value; setConfigurat
            'shark-cache' => \$runSharkCache,
            'ubench' => \$ubench,
            'v8' => \$v8,
+           'parse-only' => \$parseonly,
            'tests=s' => \$testsPattern,
            'help' => \$showHelp);
 
@@ -127,6 +130,7 @@ push @args, "--shark20" if $runShark20;
 push @args, "--shark-cache" if $runSharkCache;
 push @args, "--ubench" if $ubench;
 push @args, "--v8" if $v8;
+push @args, "--parse-only" if $parseonly;
 push @args, "--tests", $testsPattern if $testsPattern;
 
 exec "./sunspider", @args;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list