[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

ojan at chromium.org ojan at chromium.org
Thu Apr 8 00:56:09 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit dc2664ee097bd457429cd919c491668af1a78f1b
Author: ojan at chromium.org <ojan at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jan 7 00:21:28 2010 +0000

    2010-01-06  Ojan Vafai  <ojan at chromium.org>
    
            Reviewed by Eric Seidel.
    
            platform/chromium/fast/dom/interval.html is flaky
            https://bugs.webkit.org/show_bug.cgi?id=33274
    
            We're seeing the debug bots take >100000 microseconds to stop
            and Interval.
    
            * platform/chromium/fast/dom/interval.html:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52878 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index dc967dc..44d6b9b 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-01-06  Ojan Vafai  <ojan at chromium.org>
+
+        Reviewed by Eric Seidel.
+
+        platform/chromium/fast/dom/interval.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=33274
+
+        We're seeing the debug bots take >100000 microseconds to stop
+        and Interval.
+
+        * platform/chromium/fast/dom/interval.html:
+
 2010-01-06  Nikolas Zimmermann  <nzimmermann at rim.com>
 
         Reviewed by Dirk Schulze.
diff --git a/LayoutTests/platform/chromium/fast/dom/interval.html b/LayoutTests/platform/chromium/fast/dom/interval.html
index b05036d..23d923b 100644
--- a/LayoutTests/platform/chromium/fast/dom/interval.html
+++ b/LayoutTests/platform/chromium/fast/dom/interval.html
@@ -59,7 +59,8 @@ function test() {
   pause(50);
   interval.stop();
   ms = interval.microseconds();
-  check("stop", ms > 0 && ms < 100000, "[ms: " + ms + "]");
+  // On debug bots we've seen times as high as 250000.
+  check("stop", ms > 0 && ms < 300000, "[ms: " + ms + "]");
 
   // Verify that the timer is really stopped.
   var ms2 = interval.microseconds();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list