Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
Thanks for filing the issue.
This is a particularly hard device to come by - do you happen to have access to the device? If so could you provide us with the output of: adb shell dumpsys media.camera > info.txt
Thanks!
This is a particularly hard device to come by - do you happen to have access to the device? If so could you provide us with the output of: adb shell dumpsys media.camera > info.txt
Thanks!
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 .