[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:37:58 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 267dee9e4995a7fb5ff4786c1c4f6a84852b0907
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 2 04:01:38 2009 +0000

    2009-10-01  Drew Wilson  <atwilson at chromium.org>
    
            Reviewed by David Levin.
    
            Remove clone count from worker-cloneport.html as it's flakey on multi-process ports like Chromium.
            https://bugs.webkit.org/show_bug.cgi?id=29698
    
            * fast/workers/worker-cloneport-expected.txt:
            * fast/workers/worker-cloneport.html:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49009 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 6b2fb82..2af1b45 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2009-10-01  Drew Wilson  <atwilson at chromium.org>
+
+        Reviewed by David Levin.
+
+        Remove clone count from worker-cloneport.html as it's flakey on multi-process ports like Chromium.
+        https://bugs.webkit.org/show_bug.cgi?id=29698
+
+        * fast/workers/worker-cloneport-expected.txt:
+        * fast/workers/worker-cloneport.html:
+
 2009-10-01  Chris Marrin  <cmarrin at apple.com>
 
         Reviewed by Oliver Hunt.
diff --git a/LayoutTests/fast/workers/worker-cloneport-expected.txt b/LayoutTests/fast/workers/worker-cloneport-expected.txt
index f522a8b..d4c601f 100644
--- a/LayoutTests/fast/workers/worker-cloneport-expected.txt
+++ b/LayoutTests/fast/workers/worker-cloneport-expected.txt
@@ -1,7 +1,6 @@
 Test MessagePort messaging/entangle/detangle across threads. Should print "SUCCESS" when done.
 
 PASS: Received request for 50000 messages
-PASS: postBack complete, cloned > 50 times.
 SUCCESS - received 50000 messages.
 DONE
 
diff --git a/LayoutTests/fast/workers/worker-cloneport.html b/LayoutTests/fast/workers/worker-cloneport.html
index ceaa6c1..5b1c469 100644
--- a/LayoutTests/fast/workers/worker-cloneport.html
+++ b/LayoutTests/fast/workers/worker-cloneport.html
@@ -41,7 +41,6 @@ worker.onmessage = function(evt) {
 }
 
 // Keep cloning the passed port until we're told to stop.
-var numClones = 0;
 function resendPort(evt)
 {
     if (!evt.ports)
@@ -50,15 +49,8 @@ function resendPort(evt)
         log("FAIL: ports.length = " + evt.ports.length);
 
     if (!stopCloning) {
-        numClones++;
         evt.target.postMessage("", evt.ports);
     } else {
-        if (numClones < 50) {
-            // If we didn't clone at least 50 times, then there's something amiss.
-            log("FAIL: postBack complete, but only cloned " + numClones + " times.");
-        } else {
-            log("PASS: postBack complete, cloned > 50 times.");
-        }
         // Make sure the messages arrived in order.
         var itemNum = 0;
         // Queue up a task to execute once the messages have been processed. The timeout value is set fairly large to account for Chromium's different message delivery architecture.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list