[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 02:21:45 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 9f7b68b2e687495a27f1e7b13a599f3d89a891fc
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