Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4293)

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java

Issue 2841523002: Disable flaky WebVrTests to fix broken M and L android builds. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
index 875f466461eb2726278f8c9a675a4c081c1660d6..b9311fd39a5c85d78f42beb6ffef3961f864e53a 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
@@ -229,6 +229,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
* Tests that a successful requestPresent call actually enters VR
*/
@SmallTest
+ @DisabledTest(message = "crbug.com/713781")
public void testRequestPresentEntersVr() throws InterruptedException {
String testName = "test_requestPresent_enters_vr";
loadUrl(getHtmlTestFile(testName), PAGE_LOAD_TIMEOUT_S);
@@ -308,6 +309,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
* Tests that non-focused tabs cannot get pose information.
*/
@SmallTest
+ @DisabledTest(message = "crbug.com/713781")
public void testPoseDataUnfocusedTab() throws InterruptedException {
String testName = "test_pose_data_unfocused_tab";
loadUrl(getHtmlTestFile(testName), PAGE_LOAD_TIMEOUT_S);
@@ -380,6 +382,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
* VR Services is installed and up to date.
*/
@MediumTest
+ @DisabledTest(message = "crbug.com/713781")
public void testInfoBarNotPresentWhenVrServicesCurrent() throws InterruptedException {
infoBarTestHelper(VrCoreVersionChecker.VR_READY);
}
@@ -389,6 +392,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
* VR Services is outdated.
*/
@MediumTest
+ @DisabledTest(message = "crbug.com/713781")
public void testInfoBarPresentWhenVrServicesOutdated() throws InterruptedException {
infoBarTestHelper(VrCoreVersionChecker.VR_OUT_OF_DATE);
}
@@ -398,6 +402,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
* Services is missing.
*/
@MediumTest
+ @DisabledTest(message = "crbug.com/713781")
public void testInfoBarPresentWhenVrServicesMissing() throws InterruptedException {
infoBarTestHelper(VrCoreVersionChecker.VR_NOT_AVAILABLE);
}
@@ -407,6 +412,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
* is not supported on the device.
*/
@MediumTest
+ @DisabledTest(message = "crbug.com/713781")
public void testInfoBarNotPresentWhenVrServicesNotSupported() throws InterruptedException {
infoBarTestHelper(VrCoreVersionChecker.VR_NOT_SUPPORTED);
}
@@ -416,6 +422,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
* devices the WebVR tests are run on continuously.
*/
@MediumTest
+ @DisabledTest(message = "crbug.com/713781")
public void testDeviceCapabilitiesMatchExpectations() throws InterruptedException {
String testName = "test_device_capabilities_match_expectations";
loadUrl(getHtmlTestFile(testName), PAGE_LOAD_TIMEOUT_S);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698