Changeset 235415 in webkit


Ignore:
Timestamp:
Aug 27, 2018 5:35:26 PM (6 years ago)
Author:
sihui_liu@apple.com
Message:

[ MacOS iOS ] Layout Test storage/indexeddb/modern/opendatabase-after-storage-crash.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=187648
<rdar://problem/42405935>

Add an early exit so test does not call waitUntilDone after test ends.

Reviewed by Ryosuke Niwa.

  • platform/wk2/TestExpectations:
  • storage/indexeddb/modern/opendatabase-after-storage-crash.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r235410 r235415  
     12018-08-27  Sihui Liu  <sihui_liu@apple.com>
     2
     3        [ MacOS iOS ] Layout Test storage/indexeddb/modern/opendatabase-after-storage-crash.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=187648
     5        <rdar://problem/42405935>
     6
     7        Add an early exit so test does not call waitUntilDone after test ends.
     8
     9        Reviewed by Ryosuke Niwa.
     10
     11        * platform/wk2/TestExpectations:
     12        * storage/indexeddb/modern/opendatabase-after-storage-crash.html:
     13
    1142018-08-27  Youenn Fablet  <youenn@apple.com>
    215
  • trunk/LayoutTests/platform/wk2/TestExpectations

    r235330 r235415  
    739739
    740740http/tests/navigation/useragent-reload.php [ Pass ]
    741 webkit.org/b/187931 storage/indexeddb/modern/opendatabase-after-storage-crash.html [ Skip ]
     741storage/indexeddb/modern/opendatabase-after-storage-crash.html [ Pass ]
    742742
    743743### END OF (5) Progressions, expected successes that are expected failures in WebKit1.
  • trunk/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html

    r234077 r235415  
    4747                shouldBeEqualToString('sessionStorage[storageKey]', 'Made it');
    4848
    49                 if (window.testRunner)
     49                if (window.testRunner) {
    5050                        testRunner.notifyDone();
     51                        return;
     52                }
    5153        }
    52        
     54
    5355        sessionStorage.doneFirstLoad = true;
    5456
Note: See TracChangeset for help on using the changeset viewer.