Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
We have some support in androidx.compose.ui.autofill
Leaving this bug open in case Ralston wants to add more info
No update yet.
We have some support in androidx.compose.ui.autofill
Leaving this bug open in case Ralston wants to add more info
Description
I was looking at API 23 failures in benchmark ( b/173743418 ), and fixed an issue where one failed test brought down the entire suite. In so doing, I noticed a similar pattern in compose tests . Roughly 58 tests out of the 186 in compose.ui aren't actually running, they're just bypassed.
Translation - process crash skipped a lot of tests.
Sample failure log snippet:
Looking at compose code, RenderNodeApi23 calls RenderNode.discardDisplayList()
But in API 23 that method was called RenderNode.destroyDisplayListData() . It was only changed to discardDisplayList in API 24 .