Open
Bug 754537
Opened 13 years ago
Updated 1 year ago
When some tests fail in test_writer_starvation.js, it goes in infinite loop.
Categories
(Core :: Storage: IndexedDB, defect, P5)
Tracking
()
NEW
People
(Reporter: glandium, Unassigned)
References
Details
(Whiteboard: dom-lws-bugdash-triage)
The loop is:
while (callbackCount < readerCount) {
executeSoon(function() { testGenerator.next(); });
yield;
}
When errors happen during the test, callbackCount is never incremented, and thus can't be higher than readerCount.
| Reporter | ||
Comment 1•13 years ago
|
||
FYI, an "easy" way to end up in this infinite loop is to use an sqlite that doesn't have -DSQLITE_MAX_SCHEMA_RETRY=25.
Updated•8 years ago
|
Priority: -- → P5
Updated•3 years ago
|
Severity: normal → S3
Updated•1 year ago
|
Severity: S3 → S4
Whiteboard: dom-lws-bugdash-triage
You need to log in
before you can comment on or make changes to this bug.
Description
•