[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

eric at webkit.org eric at webkit.org
Fri Feb 26 22:18:34 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit c9fe20adc1ef29c0d7a07f851b41ab9bffa27d0b
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Feb 12 09:47:00 2010 +0000

    2010-02-12  Dirk Pranke  <dpranke at chromium.org>
    
            Reviewed by Eric Seidel.
    
            Fix typos in driver_test.py
    
            https://bugs.webkit.org/show_bug.cgi?id=34810
    
            * Scripts/webkitpy/layout_tests/driver_test.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54710 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 48f4838..0842c80 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,13 @@
+2010-02-12  Dirk Pranke  <dpranke at chromium.org>
+
+        Reviewed by Eric Seidel.
+
+        Fix typos in driver_test.py 
+
+        https://bugs.webkit.org/show_bug.cgi?id=34810
+
+        * Scripts/webkitpy/layout_tests/driver_test.py:
+
 2010-02-12  Simon Hausmann  <simon.hausmann at nokia.com>
 
         Reviewed by Kenneth Rohde Christiansen.
diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/driver_test.py b/WebKitTools/Scripts/webkitpy/layout_tests/driver_test.py
index 66aeee1..6e4ba99 100644
--- a/WebKitTools/Scripts/webkitpy/layout_tests/driver_test.py
+++ b/WebKitTools/Scripts/webkitpy/layout_tests/driver_test.py
@@ -62,16 +62,16 @@ def run_tests(port, options, tests):
 
 if __name__ == '__main__':
     optparser = optparse.OptionParser()
-    optparser.add_option('-p', '--port', action='store', default='mac',
-                         'Platform to test (e.g., "mac", "chromium-mac", etc.')
+    optparser.add_option('-p', '--platform', action='store', default='mac',
+                         help='Platform to test (e.g., "mac", "chromium-mac", etc.')
     optparser.add_option('-t', '--target', action='store', default='Release',
-                         'build type ("Debug" or "Release")')
+                         help='build type ("Debug" or "Release")')
     optparser.add_option('', '--timeout', action='store', default='2000',
-                         'test timeout in milliseconds (2000 by default)')
+                         help='test timeout in milliseconds (2000 by default)')
     optparser.add_option('', '--wrapper', action='store')
     optparser.add_option('', '--no-pixel-tests', action='store_true',
                          default=False,
                          help='disable pixel-to-pixel PNG comparisons')
     options, args = optparser.parse_args()
-    p = port.get(options.port, options)
+    p = port.get(options.platform, options)
     run_tests(p, options, args)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list