Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b2c5eb3a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Investigator: adding "Screen is empty" as another sign of crashed...

Merge "Investigator: adding "Screen is empty" as another sign of crashed sysui" into ub-launcher3-master
parents a8063bb6 ae701bfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ class FailureInvestigator {
    private static final ExceptionMatch[] EXCEPTION_MATCHES = {
            new ExceptionMatch(
                    "java.lang.AssertionError: http://go/tapl : Tests are broken by a "
                            + "non-Launcher system error: Phone is locked",
                            + "non-Launcher system error: (Phone is locked|Screen is empty)",
                    new LogcatMatch[]{
                            new LogcatMatch(
                                    "BroadcastQueue: Can't deliver broadcast to com.android"
+2 −1
Original line number Diff line number Diff line
@@ -341,7 +341,8 @@ public final class LauncherInstrumentation {
    public void checkForAnomaly() {
        final String anomalyMessage = getAnomalyMessage();
        if (anomalyMessage != null) {
            String message = "Tests are broken by a non-Launcher system error: " + anomalyMessage;
            String message = "http://go/tapl : Tests are broken by a non-Launcher system error: "
                    + anomalyMessage;
            log("Hierarchy dump for: " + message);
            dumpViewHierarchy();