[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

commit-queue at webkit.org commit-queue at webkit.org
Fri Jan 21 14:44:54 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit b97c1b9b69988bb20e1f742167cc7072c3dc00b5
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 28 22:20:24 2010 +0000

    2010-12-28  Xan Lopez  <xlopez at igalia.com>
    
            Reviewed by Eric Seidel.
    
            Add --no-build option to run-sunspider
            https://bugs.webkit.org/show_bug.cgi?id=51658
    
            * Scripts/run-sunspider: add --no-build flag to skip building
            phase.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74726 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index 5e622dd..7c14d94 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,3 +1,13 @@
+2010-12-28  Xan Lopez  <xlopez at igalia.com>
+
+        Reviewed by Eric Seidel.
+
+        Add --no-build option to run-sunspider
+        https://bugs.webkit.org/show_bug.cgi?id=51658
+
+        * Scripts/run-sunspider: add --no-build flag to skip building
+        phase.
+
 2010-12-27  Daniel Bates  <dbates at rim.com>
 
         Rubber-stamped by Martin Robinson.
diff --git a/Tools/Scripts/run-sunspider b/Tools/Scripts/run-sunspider
index 15894b0..cd16d41 100755
--- a/Tools/Scripts/run-sunspider
+++ b/Tools/Scripts/run-sunspider
@@ -48,6 +48,7 @@ my $parseonly = 0;
 my $setBaseline = 0;
 my $showHelp = 0;
 my $testsPattern;
+my $noBuild = 0;
 
 my $programName = basename($0);
 my $usage = <<EOF;
@@ -64,6 +65,7 @@ Usage: $programName [options] [options to pass to build system]
   --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      Use the parse-only benchmark suite. Same as --suite=parse-only
+  --no-build        Do not try to build JSC before running the tests.
 EOF
 
 GetOptions('root=s' => sub { my ($x, $value) = @_; $root = $value; setConfigurationProductDir(Cwd::abs_path($root)); },
@@ -77,7 +79,8 @@ GetOptions('root=s' => sub { my ($x, $value) = @_; $root = $value; setConfigurat
            'v8' => \$v8,
            'parse-only' => \$parseonly,
            'tests=s' => \$testsPattern,
-           'help' => \$showHelp);
+           'help' => \$showHelp,
+           'no-build' => \$noBuild);
 
 if ($showHelp) {
    print STDERR $usage;
@@ -106,7 +109,9 @@ sub setupEnvironmentForExecution($)
     # FIXME: Other platforms may wish to augment this method to use LD_LIBRARY_PATH, etc.
 }
 
-buildJSC();
+unless ($noBuild) {
+    buildJSC();
+}
 
 chdirWebKit();
 chdir("SunSpider");

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list