Promote stable open app from overview tests

Promote stable postsubmit and flaky tests to presubmit

Test: atest FlickerTests:OpenAppFromOverviewTest
Bug: 162923992
Change-Id: I81fff61439c90149bf6bea9b7bb5067e83e5e3bc
This commit is contained in:
Nataniel Borges
2021-02-24 12:16:41 +01:00
parent b9f76e103c
commit 990db93814

View File

@@ -17,7 +17,6 @@
package com.android.server.wm.flicker.launch
import android.app.Instrumentation
import android.platform.test.annotations.Postsubmit
import android.platform.test.annotations.Presubmit
import android.view.Surface
import androidx.test.filters.FlakyTest
@@ -148,17 +147,35 @@ class OpenAppFromOverviewTest(private val testSpec: FlickerTestParameter) {
@Test
fun focusChanges() = testSpec.focusChanges("NexusLauncherActivity", testApp.`package`)
@Postsubmit
@Presubmit
@Test
fun visibleWindowsShownMoreThanOneConsecutiveEntry() =
fun visibleWindowsShownMoreThanOneConsecutiveEntry() {
Assume.assumeFalse(testSpec.isRotated)
testSpec.visibleWindowsShownMoreThanOneConsecutiveEntry()
}
@FlakyTest
@Test
fun visibleLayersShownMoreThanOneConsecutiveEntry() =
testSpec.visibleLayersShownMoreThanOneConsecutiveEntry()
fun visibleWindowsShownMoreThanOneConsecutiveEntry_Flaky() {
Assume.assumeTrue(testSpec.isRotated)
testSpec.visibleWindowsShownMoreThanOneConsecutiveEntry()
}
@FlakyTest(bugId = 141361128)
@Presubmit
@Test
fun visibleLayersShownMoreThanOneConsecutiveEntry() {
Assume.assumeFalse(testSpec.isRotated)
testSpec.visibleLayersShownMoreThanOneConsecutiveEntry()
}
@FlakyTest
@Test
fun visibleLayersShownMoreThanOneConsecutiveEntry_Flaky() {
Assume.assumeTrue(testSpec.isRotated)
testSpec.visibleLayersShownMoreThanOneConsecutiveEntry()
}
@Presubmit
@Test
fun noUncoveredRegions() = testSpec.noUncoveredRegions(Surface.ROTATION_0,
testSpec.config.endRotation)