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

Commit 8940f2e4 authored by Nataniel Borges's avatar Nataniel Borges
Browse files

Disable flaky split screen assertion

Bug: 291678271
Test: atest WMShellFlickerTestsSplitScreen
Change-Id: Id80fc810b912b8da3a1cc2466da3efd534e5500b
parent 49e61e47
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ class DragDividerToResize(override val flicker: LegacyFlickerTest) :
    @Test
    fun splitScreenDividerKeepVisible() = flicker.layerKeepVisible(SPLIT_SCREEN_DIVIDER_COMPONENT)

    @Presubmit
    @FlakyTest(bugId = 291678271)
    @Test
    fun primaryAppLayerVisibilityChanges() {
        flicker.assertLayers {
@@ -69,7 +69,7 @@ class DragDividerToResize(override val flicker: LegacyFlickerTest) :
        }
    }

    @Presubmit
    @FlakyTest(bugId = 291678271)
    @Test
    fun secondaryAppLayerVisibilityChanges() {
        flicker.assertLayers {
@@ -87,7 +87,7 @@ class DragDividerToResize(override val flicker: LegacyFlickerTest) :
    @Test
    fun secondaryAppWindowKeepVisible() = flicker.appWindowKeepVisible(secondaryApp)

    @FlakyTest(bugId = 245472831)
    @FlakyTest(bugId = 291678271)
    @Test
    fun primaryAppBoundsChanges() {
        flicker.splitAppLayerBoundsChanges(
@@ -97,7 +97,7 @@ class DragDividerToResize(override val flicker: LegacyFlickerTest) :
        )
    }

    @Presubmit
    @FlakyTest(bugId = 291678271)
    @Test
    fun secondaryAppBoundsChanges() =
        flicker.splitAppLayerBoundsChanges(
@@ -106,6 +106,12 @@ class DragDividerToResize(override val flicker: LegacyFlickerTest) :
            portraitPosTop = true
        )

    @FlakyTest(bugId = 291678271)
    @Test
    override fun visibleLayersShownMoreThanOneConsecutiveEntry() {
        super.visibleLayersShownMoreThanOneConsecutiveEntry()
    }

    companion object {
        @Parameterized.Parameters(name = "{0}")
        @JvmStatic