Changeset 52878 in webkit


Ignore:
Timestamp:
Jan 6, 2010 4:21:28 PM (14 years ago)
Author:
ojan@chromium.org
Message:

2010-01-06 Ojan Vafai <ojan@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:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r52866 r52878  
     12010-01-06  Ojan Vafai  <ojan@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        platform/chromium/fast/dom/interval.html is flaky
     6        https://bugs.webkit.org/show_bug.cgi?id=33274
     7
     8        We're seeing the debug bots take >100000 microseconds to stop
     9        and Interval.
     10
     11        * platform/chromium/fast/dom/interval.html:
     12
    1132010-01-06  Nikolas Zimmermann  <nzimmermann@rim.com>
    214
  • trunk/LayoutTests/platform/chromium/fast/dom/interval.html

    r52498 r52878  
    6060  interval.stop();
    6161  ms = interval.microseconds();
    62   check("stop", ms > 0 && ms < 100000, "[ms: " + ms + "]");
     62  // On debug bots we've seen times as high as 250000.
     63  check("stop", ms > 0 && ms < 300000, "[ms: " + ms + "]");
    6364
    6465  // Verify that the timer is really stopped.
Note: See TracChangeset for help on using the changeset viewer.