Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upModules can finish while descendant modules are still fetching descendants #27073
Labels
Comments
|
This was my mistake. I didn't rebase on the recorrect revision. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've tracked down the panic I'm seeing in the webgpu tests which is unrelated to #27061. One case seems to happen when:
encode_selectively.js doesn't finish fetching, but http://web-platform.test:8000/webgpu/common/framework/query/query.js is in the FetchingDescendants state. When stringify_params.js is finished, we recognize that encode_selectively.js is still being fetched and don't finish query.js. However when test_worker.js finishes, we look at the dependencies of wpt.js and decide that since query.js is in the FetchingDescendants state that it's classified as ready. This causes us to finalize wpt.js while encode_selectively.js is still being fetched.
cc @CYBAI