You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
this is showing up as failures in codegen_test, but only when they're all run together
The "resolved" AST is missing resolution info. This AST is always for a library that is shared by several tests. It only happens if the tests that use this shared library are run far apart (with hundreds of other tests in between).
Thanks to @bwilkerson we believe this may be happening in BuildCompilationUnitElementTask, specifically in the DeclarationResolver step that attempts to rehydrate a CompilationUnit from a cached CompilationUnitElement.
The text was updated successfully, but these errors were encountered:
update: @vsmenon is working around this by having BatchCompiler track which test files we've compiled, so we don't try and get the resolved compilation unit for the shared library more than once.
this is showing up as failures in codegen_test, but only when they're all run together
The "resolved" AST is missing resolution info. This AST is always for a library that is shared by several tests. It only happens if the tests that use this shared library are run far apart (with hundreds of other tests in between).
Thanks to @bwilkerson we believe this may be happening in BuildCompilationUnitElementTask, specifically in the DeclarationResolver step that attempts to rehydrate a CompilationUnit from a cached CompilationUnitElement.
The text was updated successfully, but these errors were encountered: