WebKit Bugzilla
Attachment 346852 Details for
Bug 187648
: [ MacOS iOS ] Layout Test storage/indexeddb/modern/opendatabase-after-storage-crash.html is flaky
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-187648-20180809112916.patch (text/plain), 2.46 KB, created by
Sihui Liu
on 2018-08-09 11:29:16 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Sihui Liu
Created:
2018-08-09 11:29:16 PDT
Size:
2.46 KB
patch
obsolete
>Subversion Revision: 234728 >diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog >index 0b73be4714ec16b47a7991d173887b57b936f9e9..e811aff65b135963307562b2ab4df661c1939372 100644 >--- a/LayoutTests/ChangeLog >+++ b/LayoutTests/ChangeLog >@@ -1,3 +1,16 @@ >+2018-08-09 Sihui Liu <sihui_liu@apple.com> >+ >+ [ 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 NOBODY (OOPS!). >+ >+ * platform/wk2/TestExpectations: >+ * storage/indexeddb/modern/opendatabase-after-storage-crash.html: >+ > 2018-08-08 Keith Miller <keith_miller@apple.com> > > Array.prototype.sort should call @toLength instead of ">>> 0" >diff --git a/LayoutTests/platform/wk2/TestExpectations b/LayoutTests/platform/wk2/TestExpectations >index cd053c194663d24765dfe09f37621ad116c48cab..7a5e3c8ad2c09e5dd1d10f042bb05f86efe3edfb 100644 >--- a/LayoutTests/platform/wk2/TestExpectations >+++ b/LayoutTests/platform/wk2/TestExpectations >@@ -735,7 +735,7 @@ http/tests/navigation/process-swap-window-open.html [ Pass ] > http/wpt/cross-origin-resource-policy/ [ Pass ] > > http/tests/navigation/useragent-reload.php [ Pass ] >-webkit.org/b/187931 storage/indexeddb/modern/opendatabase-after-storage-crash.html [ Skip ] >+storage/indexeddb/modern/opendatabase-after-storage-crash.html [ Pass ] > > > ### END OF (5) Progressions, expected successes that are expected failures in WebKit1. >diff --git a/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html b/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html >index 44d73d42d09cfc7906b8e34ac991822ff07b7d88..70ed44b484c774dc35fad498211d498aa49aa4d9 100644 >--- a/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html >+++ b/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html >@@ -46,10 +46,12 @@ request.onupgradeneeded = function(e) { > document.body.innerHTML = "Successfully opened database with version " + versionToOpen + "."; > shouldBeEqualToString('sessionStorage[storageKey]', 'Made it'); > >- if (window.testRunner) >+ if (window.testRunner) { > testRunner.notifyDone(); >+ return; >+ } > } >- >+ > sessionStorage.doneFirstLoad = true; > > // Set an error handler on the database connection so once the storage process terminates we know to continue the test
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 187648
:
345413
|
345490
|
346666
| 346852