Intermittent js/src/jit-test/tests/gc/helper-thread-params.js | Timeout (code -6, args "") [150.0 s]
Categories
(Core :: JavaScript Engine, defect, P1)
Tracking
()
Tracking | Status | |
---|---|---|
firefox-esr68 | --- | unaffected |
firefox-esr78 | --- | unaffected |
firefox80 | --- | unaffected |
firefox81 | --- | wontfix |
firefox82 | --- | fixed |
People
(Reporter: intermittent-bug-filer, Assigned: jonco)
References
(Regression)
Details
(Keywords: intermittent-failure, regression)
Attachments
(1 file)
Filed by: rmaries [at] mozilla.com
Parsed log: https://treeherder.mozilla.org/logviewer.html#?job_id=313584196&repo=autoland
Full log: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XA3FeIr0QXWLTUzgznNp7g/runs/0/artifacts/public/logs/live_backing.log
[task 2020-08-20T21:01:25.921Z] TEST-PASS | js/src/jit-test/tests/ion/super-getelem-profiling.js | Success (code 0, args "--baseline-eager") [0.6 s]
[task 2020-08-20T21:01:26.026Z] Exit code: -6
[task 2020-08-20T21:01:26.026Z] TIMEOUT - gc/helper-thread-params.js
[task 2020-08-20T21:01:26.026Z] TEST-UNEXPECTED-FAIL | js/src/jit-test/tests/gc/helper-thread-params.js | Timeout (code -6, args "") [150.0 s]
[task 2020-08-20T21:01:26.026Z] INFO exit-status : -6
[task 2020-08-20T21:01:26.026Z] INFO timed-out : 0:00:00.028384
Comment hidden (Intermittent Failures Robot) |
Updated•5 years ago
|
Assignee | ||
Updated•5 years ago
|
Assignee | ||
Comment 2•5 years ago
|
||
Previously HelperThread instances lived in the GlobalHelperThreadState vector.
This meant that resizing the vector could move the objects in memory which was
not safe. Also HelperThread members were not always initialized. I'm not sure
how this managed to work.
This changes the vector to contain pointers to HelperThreads which now won't
get moved. Also, for some reason the vector itself was a separate allocation
which was unnecessary. The patch makes this part of the main object.
I added a threads() method taking a lock reference since the thread list can
now change after initialization. Finally I simplified the thread creation
loop.
Comment 4•5 years ago
|
||
Backed out for perma failures.
Log: https://treeherder.mozilla.org/logviewer.html#/jobs?job_id=313983683&repo=autoland&lineNumber=113974
Backout: https://hg.mozilla.org/integration/autoland/rev/766f836f9a980b81d4e3f1473888d39e742364a1
Comment 6•5 years ago
|
||
Set release status flags based on info from the regressing bug 1657850
Comment 7•5 years ago
|
||
bugherder |
Assignee | ||
Updated•5 years ago
|
Updated•5 years ago
|
Comment hidden (Intermittent Failures Robot) |
Description
•