diff options
author | Nataniel Borges <natanieljr@google.com> | 2020-01-21 11:26:47 +0100 |
---|---|---|
committer | Nataniel Borges <natanieljr@google.com> | 2020-01-21 11:26:47 +0100 |
commit | 239e4bffff9c684f0d3d0b5015b69a6de026123e (patch) | |
tree | 521f289e298e15947b0e3fb578bdb38db57ed002 /tests/FlickerTests/src | |
parent | 3e1548f5a51716c2a0a19db71a9e5f76511032a9 (diff) |
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
Diffstat (limited to 'tests/FlickerTests/src')
-rw-r--r-- | tests/FlickerTests/src/com/android/server/wm/flicker/SeamlessAppRotationTest.java | 4 |
1 files changed, 4 insertions, 0 deletions
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 ae55a75d7e67..8559cb9f51f7 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; |