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

antonm at chromium.org antonm at chromium.org
Wed Dec 22 11:21:39 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d7b5005edc1a5bbeed577b31da8e81e41ab01082
Author: antonm at chromium.org <antonm at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jul 20 16:44:49 2010 +0000

    2010-07-20  Anton Muhin  <antonm at chromium.org>
    
            Reviewed by Darin Adler.
    
            Print additional information about exception if failed to connect to apache (in verbose mode).
            https://bugs.webkit.org/show_bug.cgi?id=42627
    
            * Scripts/webkitpy/layout_tests/port/http_server_base.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63749 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 4c5b806..7ee5491 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-07-20  Anton Muhin  <antonm at chromium.org>
+
+        Reviewed by Darin Adler.
+
+        Print additional information about exception if failed to connect to apache (in verbose mode).
+        https://bugs.webkit.org/show_bug.cgi?id=42627
+
+        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
+
 2010-07-20  Tony Chang  <tony at chromium.org>
 
         Reviewed by David Levin.
diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/port/http_server_base.py b/WebKitTools/Scripts/webkitpy/layout_tests/port/http_server_base.py
index c9805d6..2745cce 100644
--- a/WebKitTools/Scripts/webkitpy/layout_tests/port/http_server_base.py
+++ b/WebKitTools/Scripts/webkitpy/layout_tests/port/http_server_base.py
@@ -67,8 +67,8 @@ class HttpServerBase(object):
             try:
                 response = urllib.urlopen(url)
                 _log.debug("Server running at %s" % url)
-            except IOError:
-                _log.debug("Server NOT running at %s" % url)
+            except IOError, e:
+                _log.debug("Server NOT running at %s: %s" % (url, e))
                 return False
 
         return True

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list