From 239e4bffff9c684f0d3d0b5015b69a6de026123e Mon Sep 17 00:00:00 2001 From: Nataniel Borges Date: Tue, 21 Jan 2020 11:26:47 +0100 Subject: [PATCH] Disable seamless rotation on flicker tests Due to bug b/147659548 the seamless rotation is not working properly on the flicker tests. Disable the test until the bug is fixed. Test: atest FlickerTests Change-Id: Ib286cadde9019e12dbf7c673cb7f60b53a1687bf --- .../android/server/wm/flicker/SeamlessAppRotationTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/FlickerTests/src/com/android/server/wm/flicker/SeamlessAppRotationTest.java b/tests/FlickerTests/src/com/android/server/wm/flicker/SeamlessAppRotationTest.java index ae55a75d7e673..8559cb9f51f73 100644 --- a/tests/FlickerTests/src/com/android/server/wm/flicker/SeamlessAppRotationTest.java +++ b/tests/FlickerTests/src/com/android/server/wm/flicker/SeamlessAppRotationTest.java @@ -30,10 +30,12 @@ import android.graphics.Rect; import android.view.Surface; import androidx.test.InstrumentationRegistry; +import androidx.test.filters.FlakyTest; import androidx.test.filters.LargeTest; import org.junit.Before; import org.junit.FixMethodOrder; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.MethodSorters; @@ -50,6 +52,8 @@ import java.util.Collection; @LargeTest @RunWith(Parameterized.class) @FixMethodOrder(MethodSorters.NAME_ASCENDING) +@FlakyTest(bugId = 147659548) +@Ignore("Waiting bug feedback") public class SeamlessAppRotationTest extends FlickerTestBase { private int mBeginRotation; private int mEndRotation;