[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

dpranke at chromium.org dpranke at chromium.org
Wed Dec 22 15:29:34 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a50c14078b7525699d3ad1d3943d1310f9be03c9
Author: dpranke at chromium.org <dpranke at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Nov 4 23:32:29 2010 +0000

    2010-11-04  Dirk Pranke  <dpranke at chromium.org>
    
            Reviewed by James Robinson.
    
            new-run-webkit-tests wasn't using DRT by default for
            --platform chromium-gpu
    
            The default value was set to False instead of None, which meant
            that the platform specific logic wasn't firing to change the
            value to True (b/c we were afraid we'd be overriding the user
            preference).
    
            https://bugs.webkit.org/show_bug.cgi?id=49038
    
            * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71365 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 8fef675..e4eb4dc 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,19 @@
+2010-11-04  Dirk Pranke  <dpranke at chromium.org>
+
+        Reviewed by James Robinson.
+
+        new-run-webkit-tests wasn't using DRT by default for
+        --platform chromium-gpu
+
+        The default value was set to False instead of None, which meant
+        that the platform specific logic wasn't firing to change the
+        value to True (b/c we were afraid we'd be overriding the user
+        preference).
+
+        https://bugs.webkit.org/show_bug.cgi?id=49038
+
+        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
+
 2010-11-04  Tony Chang  <tony at chromium.org>
 
         Reviewed by Adam Barth.
diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/WebKitTools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
index 9deec98..1f7a0ad 100755
--- a/WebKitTools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
+++ b/WebKitTools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
@@ -1530,7 +1530,7 @@ def parse_args(args=None):
             default=False,
             help="Don't check the system dependencies (themes)"),
         optparse.make_option("--use-drt", action="store_true",
-            default=False,
+            default=None,
             help="Use DumpRenderTree instead of test_shell"),
         optparse.make_option("--accelerated-compositing",
             action="store_true",

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list