| Summary: | [ BigSur Release ] TestWebKitAPI.IndexedDB.KillWebProcessWithOpenConnection is a constant failure | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Robert Jenner <jenner> | ||||||
| Component: | New Bugs | Assignee: | Sihui Liu <sihui_liu> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | achristensen, cdumez, sihui_liu, webkit-bot-watchers-bugzilla, webkit-bug-importer | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | WebKit Nightly Build | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
|
Description
Robert Jenner
2021-05-04 16:43:21 PDT
Created attachment 428408 [details]
Patch
Comment on attachment 428408 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=428408&action=review > Tools/TestWebKitAPI/Tests/WebKitCocoa/KillWebProcessWithOpenConnection-1.html:3 > +var db; Why this? > Tools/TestWebKitAPI/Tests/WebKitCocoa/KillWebProcessWithOpenConnection-1.html:7 > + db = event.target.result; why not use var here? > Tools/TestWebKitAPI/Tests/WebKitCocoa/WebProcessKillIDBCleanup.mm:41 > +static bool readyToContinue; You don't need a global here. > Tools/TestWebKitAPI/Tests/WebKitCocoa/WebProcessKillIDBCleanup.mm:111 > + readyToContinue = false; __block bool readyToContinue = false; Comment on attachment 428408 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=428408&action=review >> Tools/TestWebKitAPI/Tests/WebKitCocoa/KillWebProcessWithOpenConnection-1.html:7 >> + db = event.target.result; > > why not use var here? Left for testing. Will move it here. >> Tools/TestWebKitAPI/Tests/WebKitCocoa/WebProcessKillIDBCleanup.mm:41 >> +static bool readyToContinue; > > You don't need a global here. Will remove. Created attachment 428412 [details]
Patch for landing
Committed r277392 (237648@main): <https://commits.webkit.org/237648@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 428412 [details]. Open Failed: UnknownError: Error creating or migrating Records table in database (In reply to Chris Dumez from comment #7) > Open Failed: UnknownError: Error creating or migrating Records table in > database Yes, this is not fixed so I filed https://bugs.webkit.org/show_bug.cgi?id=226124. Can you take a look? Current output:
TestWebKitAPI.IndexedDB.KillWebProcessWithOpenConnection
/Volumes/Data/worker/bigsur-release/build/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebProcessKillIDBCleanup.mm:134
Expected equality of these values:
@"Open Succeeded"
Which is: "Open Succeeded"
string3.get()
Which is: "Open Failed: UnknownError: Error creating new Records table (%i) - %s5database is locked"
https://build.webkit.org/#/builders/105/builds/1474/steps/11/logs/stdio
This appears to have been resolved by <https://commits.webkit.org/238469@main>. |