[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
ojan at chromium.org
ojan at chromium.org
Wed Jan 20 22:14:32 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit f33ebacba70c52a541c6bb26142abd5c99a926e6
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