From 65ed9c3d9bb6c0086613b3e6512bdb0a1f673936 Mon Sep 17 00:00:00 2001 From: vadimt Date: Mon, 24 Feb 2020 19:10:50 -0800 Subject: [PATCH] Adding a failure investigator Change-Id: Ie1c9820ecb7373a1f4428a24867c51332a84e65c --- .../com/android/launcher3/util/rule/FailureInvestigator.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/src/com/android/launcher3/util/rule/FailureInvestigator.java b/tests/src/com/android/launcher3/util/rule/FailureInvestigator.java index 5880eb6146..ebf7991b39 100644 --- a/tests/src/com/android/launcher3/util/rule/FailureInvestigator.java +++ b/tests/src/com/android/launcher3/util/rule/FailureInvestigator.java @@ -106,6 +106,11 @@ class FailureInvestigator { return 0; } + if (matches("android\\:\\:uirenderer\\:\\:renderthread\\:\\:EglManager\\:\\:swapBuffers", + logSinceBoot)) { + return 148529608; + } + for (ExceptionMatch exceptionMatch : EXCEPTION_MATCHES) { if (matches(exceptionMatch.exceptionPattern, exception)) { for (LogcatMatch logcatMatch : exceptionMatch.logcatMatches) {