commit | 87db7187c6a67fcd106665b357f0d416dffeb4e4 | [log] [tgz] |
---|---|---|
author | vadimt <vadimt@google.com> | Wed May 13 12:57:32 2020 -0700 |
committer | vadimt <vadimt@google.com> | Wed May 13 13:08:39 2020 -0700 |
tree | a0c63a93aa57c53ae91dc55f5bf8109dda84aab4 | |
parent | 9a1becebecddde0e9b132f7b8aa0d7c1c945a29f [diff] |
Starting investigation for non-delivered TIS events Bug: 156287114 Change-Id: Icae88318a8e5a8f6b9931913b24ad3ece5475cc3
diff --git a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java index 6e9c5a0..14212be 100644 --- a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java +++ b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
@@ -436,6 +436,13 @@ sEventChecker.finishNoWait(); } } + // b/156287114 + try { + log("Input: " + mDevice.executeShellCommand("dumpsys input")); + } catch (IOException e) { + e.printStackTrace(); + } + log("Hierarchy dump for: " + message); dumpViewHierarchy();
diff --git a/tests/tapl/com/android/launcher3/tapl/LogEventChecker.java b/tests/tapl/com/android/launcher3/tapl/LogEventChecker.java index ac90b1b..79d20ac 100644 --- a/tests/tapl/com/android/launcher3/tapl/LogEventChecker.java +++ b/tests/tapl/com/android/launcher3/tapl/LogEventChecker.java
@@ -207,7 +207,9 @@ // Workaround for b/154157191 private static boolean ignoreMistatch(boolean successfulGesture, String sequence) { - return TestProtocol.SEQUENCE_TIS.equals(sequence) && successfulGesture; + // b/156287114 + return false; +// return TestProtocol.SEQUENCE_TIS.equals(sequence) && successfulGesture; } // If the list of actual events matches the list of expected events, returns -1, otherwise