Changeset 79617 in webkit


Ignore:
Timestamp:
Feb 24, 2011 2:04:07 PM (13 years ago)
Author:
kbr@google.com
Message:

2011-02-24 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Layout test fast/dom/timer-increase-then-decrease-min-interval.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=55176

Wait twice as long (1 second instead of 0.5 seconds) for results
from these two tests. They were on the verge of passing when
failures occurred previously, so this increase should push them
well over the passing threshold.

  • fast/dom/timer-increase-then-decrease-min-interval-repeating.html:
  • fast/dom/timer-increase-then-decrease-min-interval.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r79608 r79617  
     12011-02-24  Kenneth Russell  <kbr@google.com>
     2
     3        Reviewed by Darin Fisher.
     4
     5        Layout test fast/dom/timer-increase-then-decrease-min-interval.html is flaky
     6        https://bugs.webkit.org/show_bug.cgi?id=55176
     7
     8        Wait twice as long (1 second instead of 0.5 seconds) for results
     9        from these two tests. They were on the verge of passing when
     10        failures occurred previously, so this increase should push them
     11        well over the passing threshold.
     12
     13        * fast/dom/timer-increase-then-decrease-min-interval-repeating.html:
     14        * fast/dom/timer-increase-then-decrease-min-interval.html:
     15
    1162011-02-24  Mihai Parparita  <mihaip@chromium.org>
    217
  • trunk/LayoutTests/fast/dom/timer-increase-then-decrease-min-interval-repeating.html

    r79455 r79617  
    3333    layoutTestController.waitUntilDone();
    3434
    35     // Make timers run no more often than once per second.
    36     layoutTestController.setMinimumTimerInterval(1.0);
     35    // Make timers run no more often than once every two seconds.
     36    layoutTestController.setMinimumTimerInterval(2.0);
    3737
    38     setInterval(slowTimeoutHandler, 500);
     38    setInterval(slowTimeoutHandler, 1000);
    3939    setInterval(fastTimeoutHandler, 1);
    4040
    4141    // Allow timers to run quickly again.
    4242    // If this doesn't cause timers to get re-evaluated immediately,
    43     // the fast timeout handler won't get called for up to a second,
     43    // the fast timeout handler won't get called for up to two seconds,
    4444    // which would lead to poor responsiveness.
    4545    layoutTestController.setMinimumTimerInterval(0.004);
  • trunk/LayoutTests/fast/dom/timer-increase-then-decrease-min-interval.html

    r78620 r79617  
    3434    layoutTestController.waitUntilDone();
    3535
    36     // Make timers run no more often than once per second.
    37     layoutTestController.setMinimumTimerInterval(1.0);
     36    // Make timers run no more often than once every two seconds.
     37    layoutTestController.setMinimumTimerInterval(2.0);
    3838
    39     setTimeout(slowTimeoutHandler, 500);
     39    setTimeout(slowTimeoutHandler, 1000);
    4040    setTimeout(fastTimeoutHandler, 1);
    4141
    4242    // Allow timers to run quickly again.
    4343    // If this doesn't cause timers to get re-evaluated immediately,
    44     // the fast timeout handler won't get called for up to a second,
     44    // the fast timeout handler won't get called for up to two seconds,
    4545    // which would lead to poor responsiveness.
    4646    layoutTestController.setMinimumTimerInterval(0.004);
Note: See TracChangeset for help on using the changeset viewer.