Changeset 275470 in webkit


Ignore:
Timestamp:
Apr 5, 2021 6:38:32 PM (3 years ago)
Author:
Chris Gambrell
Message:

REGRESSION (r275332?): [ EWS macOS iOS wk2 ] http/tests/appcache/fail-on-update.html is a flakey timeout
https://bugs.webkit.org/show_bug.cgi?id=224120
<rdar://problem/76157112>

Reviewed by Jonathan Bedard.

  • http/tests/appcache/fail-on-update-2.html:
  • http/tests/appcache/fail-on-update.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r275468 r275470  
     12021-04-05  Chris Gambrell  <cgambrell@apple.com>
     2
     3        REGRESSION (r275332?): [ EWS macOS iOS wk2 ] http/tests/appcache/fail-on-update.html is a flakey timeout
     4        https://bugs.webkit.org/show_bug.cgi?id=224120
     5        <rdar://problem/76157112>
     6
     7        Reviewed by Jonathan Bedard.
     8
     9        * http/tests/appcache/fail-on-update-2.html:
     10        * http/tests/appcache/fail-on-update.html:
     11
    1122021-04-05  Philippe Normand  <pnormand@igalia.com>
    213
  • trunk/LayoutTests/http/tests/appcache/fail-on-update-2.html

    r275366 r275470  
    4545{
    4646    if (applicationCache.status != applicationCache.UNCACHED && applicationCache.status != applicationCache.OBSOLETE) {
    47         timeoutId = setTimeout(resetManifest, 200);
     47        timeoutId = setTimeout(resetManifest, 400);
    4848        return;
    4949    }
     
    5757
    5858// If the manifest script happened to be in a wrong state, reset it.
    59 var timeoutId = setTimeout(resetManifest, 200);
     59var timeoutId = setTimeout(resetManifest, 400);
    6060
    6161</script>
  • trunk/LayoutTests/http/tests/appcache/fail-on-update.html

    r275366 r275470  
    2828{
    2929    if (applicationCache.status != applicationCache.UNCACHED && applicationCache.status != applicationCache.OBSOLETE) {
    30         timeoutId = setTimeout(resetManifest, 200);
     30        timeoutId = setTimeout(resetManifest, 400);
    3131        return;
    3232    }
     
    4040
    4141// If the manifest script happened to be in a wrong state, reset it.
    42 var timeoutId = setTimeout(resetManifest, 200);
     42var timeoutId = setTimeout(resetManifest, 400);
    4343
    4444</script>
Note: See TracChangeset for help on using the changeset viewer.