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

abarth at webkit.org abarth at webkit.org
Wed Dec 22 13:59:55 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ee2bd5996a0d1e2f8db1e7c1022d153fca9b4276
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 1 06:41:17 2010 +0000

    2010-09-30  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Eric Seidel.
    
            The WebSocket server should flush its logs
            https://bugs.webkit.org/show_bug.cgi?id=46946
    
            The WebSocket server logs are truncated because the driver just
            terminates the child.  It should run Python without buffering so we can
            see the end of the log.
    
            * Scripts/webkitpy/layout_tests/port/websocket_server.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68866 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index d9befc3..46cc789 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,16 @@
+2010-09-30  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Eric Seidel.
+
+        The WebSocket server should flush its logs
+        https://bugs.webkit.org/show_bug.cgi?id=46946
+
+        The WebSocket server logs are truncated because the driver just
+        terminates the child.  It should run Python without buffering so we can
+        see the end of the log.
+
+        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
+
 2010-09-30  Simon Fraser  <simon.fraser at apple.com>
 
         Add a button to jump to the next untested test.
diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/port/websocket_server.py b/WebKitTools/Scripts/webkitpy/layout_tests/port/websocket_server.py
index 7346671..9aeb378 100644
--- a/WebKitTools/Scripts/webkitpy/layout_tests/port/websocket_server.py
+++ b/WebKitTools/Scripts/webkitpy/layout_tests/port/websocket_server.py
@@ -164,7 +164,7 @@ class PyWebSocket(http_server.Lighttpd):
         pywebsocket_script = os.path.join(pywebsocket_base, 'mod_pywebsocket',
             'standalone.py')
         start_cmd = [
-            python_interp, pywebsocket_script,
+            python_interp, '-u', pywebsocket_script,
             '--server-host', '127.0.0.1',
             '--port', str(self._port),
             '--document-root', self._layout_tests,

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list