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

Commit 878ae3fc authored by Sebastián Franco's avatar Sebastián Franco Committed by Android (Google) Code Review
Browse files

Merge "Ignore all launcher3 flaky test so that they come back online" into tm-qpr-dev

parents 13b432cd 150e572e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -63,6 +63,7 @@ import com.android.quickstep.views.RecentsView;

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.RuleChain;
@@ -167,6 +168,7 @@ public class FallbackRecentsTest {

    // b/143488140
    //@NavigationModeSwitch
    @Ignore
    @Test
    public void goToOverviewFromHome() {
        mDevice.pressHome();
@@ -178,6 +180,7 @@ public class FallbackRecentsTest {

    // b/143488140
    //@NavigationModeSwitch
    @Ignore
    @Test
    public void goToOverviewFromApp() {
        startAppFast(resolveSystemApp(Intent.CATEGORY_APP_CALCULATOR));
@@ -213,6 +216,7 @@ public class FallbackRecentsTest {

    // b/143488140
    //@NavigationModeSwitch
    @Ignore
    @Test
    public void testOverview() {
        startAppFast(getAppPackageName());
+3 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ import com.android.launcher3.util.RaceConditionReproducer;
import com.android.quickstep.NavigationModeSwitchRule.NavigationModeSwitch;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

@@ -56,6 +57,7 @@ public class StartLauncherViaGestureTests extends AbstractQuickStepTest {
        eventProcessor.finishIteration();
    }

    @Ignore
    @Test
    @NavigationModeSwitch
    public void testStressPressHome() {
@@ -68,6 +70,7 @@ public class StartLauncherViaGestureTests extends AbstractQuickStepTest {
        }
    }

    @Ignore
    @Test
    @NavigationModeSwitch
    public void testStressSwipeToOverview() {
+4 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ import com.android.quickstep.views.RecentsView;

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

@@ -224,6 +225,7 @@ public class TaplTestsQuickstep extends AbstractQuickStepTest {
        return launcher.<RecentsView>getOverviewPanel().getBottomRowTaskCountForTablet();
    }

    @Ignore
    @Test
    @NavigationModeSwitch
    @PortraitLandscape
@@ -236,6 +238,7 @@ public class TaplTestsQuickstep extends AbstractQuickStepTest {
                isInState(() -> LauncherState.OVERVIEW));
    }

    @Ignore
    @Test
    @NavigationModeSwitch
    @PortraitLandscape
@@ -363,6 +366,7 @@ public class TaplTestsQuickstep extends AbstractQuickStepTest {
        waitForState("Launcher internal state didn't switch to Home", () -> LauncherState.NORMAL);
    }

    @Ignore
    @Test
    @PortraitLandscape
    public void testOverviewForTablet() throws Exception {
+3 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ import com.android.launcher3.widget.LauncherAppWidgetHostView;

import org.junit.Assume;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -150,11 +151,13 @@ public class ReorderWidgets extends AbstractLauncherUiTest {
                SimpleReorderCase.class.getSimpleName());
    }

    @Ignore
    @Test
    public void pushTest() throws ExecutionException, InterruptedException {
        runTestCaseMap(PushReorderCase.TEST_BY_GRID_SIZE, PushReorderCase.class.getSimpleName());
    }

    @Ignore
    @Test
    public void fullReorder() throws ExecutionException, InterruptedException {
        runTestCaseMap(FullReorderCase.TEST_BY_GRID_SIZE, FullReorderCase.class.getSimpleName());
+2 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@ import com.android.launcher3.util.rule.ShellCommandRule;
import com.android.launcher3.widget.LauncherAppWidgetProviderInfo;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -64,6 +65,7 @@ public class AddConfigWidgetTest extends AbstractLauncherUiTest {
        mAppWidgetManager = AppWidgetManager.getInstance(mTargetContext);
    }

    @Ignore
    @Test
    @PortraitLandscape
    public void testWidgetConfig() throws Throwable {
Loading