[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
eric at webkit.org
eric at webkit.org
Wed Mar 17 18:38:14 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 90bf7642817b55224f051c395933d7d9ea86bd2d
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sat Mar 13 10:28:10 2010 +0000
2010-03-13 Dimitri Glazkov <dglazkov at chromium.org>
Reviewed by David Levin.
new-run-webkit-tests fails with --debug option.
https://bugs.webkit.org/show_bug.cgi?id=36067
* Scripts/webkitpy/layout_tests/port/mac.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55959 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 4195703..4a2fd50 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-13 Dimitri Glazkov <dglazkov at chromium.org>
+
+ Reviewed by David Levin.
+
+ new-run-webkit-tests fails with --debug option.
+ https://bugs.webkit.org/show_bug.cgi?id=36067
+
+ * Scripts/webkitpy/layout_tests/port/mac.py:
+
2010-03-13 Jesus Sanchez-Palencia <jesus.palencia at openbossa.org>
Reviewed by Kenneth Rohde Christiansen.
diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/port/mac.py b/WebKitTools/Scripts/webkitpy/layout_tests/port/mac.py
index ae41992..d1659ce 100644
--- a/WebKitTools/Scripts/webkitpy/layout_tests/port/mac.py
+++ b/WebKitTools/Scripts/webkitpy/layout_tests/port/mac.py
@@ -73,7 +73,10 @@ class MacPort(base.Port):
return dirs
def check_build(self, needs_http):
- if executive.run_command([self.script_path("build-dumprendertree")],
+ build_drt_command = [self.script_path("build-dumprendertree")]
+ if self._options.target == "Debug":
+ build_drt_command.append('--debug')
+ if executive.run_command(build_drt_command,
return_exit_code=True):
return False
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list