[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

mjs at apple.com mjs at apple.com
Sun Feb 20 22:52:01 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 8cf8549bc1e34a525756380640a2bb15d431d1d4
Author: mjs at apple.com <mjs at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 12 18:55:13 2011 +0000

    2011-01-12  Maciej Stachowiak  <mjs at apple.com>
    
            Reviewed by Darin Adler.
    
            Add a no-build option to run-webkit-tests, to avoid building DRT/WKTR
            https://bugs.webkit.org/show_bug.cgi?id=52307
    
            * Scripts/old-run-webkit-tests:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75623 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index c41743b..2c049d1 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,3 +1,12 @@
+2011-01-12  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Darin Adler.
+
+        Add a no-build option to run-webkit-tests, to avoid building DRT/WKTR
+        https://bugs.webkit.org/show_bug.cgi?id=52307
+
+        * Scripts/old-run-webkit-tests:
+
 2011-01-12  Koan-Sin Tan  <koansin.tan at gmail.com>
 
         Reviewed by Martin Robinson.
diff --git a/Tools/Scripts/old-run-webkit-tests b/Tools/Scripts/old-run-webkit-tests
index ab41e9b..7fbb5da 100755
--- a/Tools/Scripts/old-run-webkit-tests
+++ b/Tools/Scripts/old-run-webkit-tests
@@ -170,6 +170,7 @@ my $useValgrind = 0;
 my $verbose = 0;
 my $shouldWaitForHTTPD = 0;
 my $useWebKitTestRunner = 0;
+my $noBuildDumpTool = 0;
 
 my @leaksFilenames;
 
@@ -329,6 +330,7 @@ my $getOptionsResult = GetOptions(
     'leaks|l' => \$shouldCheckLeaks,
     'merge-leak-depth|m:5' => \$mergeDepth,
     'new-test-results!' => \$generateNewResults,
+    'no-build' => \$noBuildDumpTool,
     'nthly=i' => \$testsPerDumpTool,
     'pixel-tests|p' => \$pixelTests,
     'platform=s' => \$platform,
@@ -405,7 +407,7 @@ $productDir .= "/Programs" if isGtk();
 
 chdirWebKit();
 
-if (!defined($root)) {
+if (!defined($root) && !$noBuildDumpTool) {
     # FIXME: We build both DumpRenderTree and WebKitTestRunner for
     # WebKitTestRunner runs becuase DumpRenderTree still includes
     # the DumpRenderTreeSupport module and the TestNetscapePlugin.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list