From fdaa12d0286dc57c1033e8d119e30c82d24f1c15 Mon Sep 17 00:00:00 2001 From: Vinit Nayak Date: Thu, 16 Apr 2020 16:48:17 -0700 Subject: [PATCH] Disabling flaky test until fix is found TaplTestsQuickstep.testAllAppsFromHome Bug: 150958400 Change-Id: I333a5f21652a5a8fc7bb90387b6bd0c81ac56330 --- .../tests/src/com/android/quickstep/TaplTestsQuickstep.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/quickstep/tests/src/com/android/quickstep/TaplTestsQuickstep.java b/quickstep/tests/src/com/android/quickstep/TaplTestsQuickstep.java index 75fcfe2f19..9aa9f4c1a6 100644 --- a/quickstep/tests/src/com/android/quickstep/TaplTestsQuickstep.java +++ b/quickstep/tests/src/com/android/quickstep/TaplTestsQuickstep.java @@ -23,6 +23,7 @@ import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import android.content.Intent; +import android.os.Build; import androidx.test.filters.LargeTest; import androidx.test.runner.AndroidJUnit4; @@ -233,6 +234,9 @@ public class TaplTestsQuickstep extends AbstractQuickStepTest { @Test @PortraitLandscape public void testAllAppsFromHome() throws Exception { + // b/150958400 + if (Build.MODEL.contains("Cuttlefish")) return; + // Test opening all apps assertNotNull("switchToAllApps() returned null", mLauncher.getWorkspace().switchToAllApps());