[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373
eric at webkit.org
eric at webkit.org
Thu Apr 8 01:46:05 UTC 2010
The following commit has been merged in the webkit-1.2 branch:
commit eb3ee4e82e927640adefb6fcef44acb6ecb57b16
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