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

Unified Diff: content/browser/devtools/protocol/devtools_protocol_browsertest.cc

Issue 2745063004: devtools[android]: Disable flaky DevtoolsProtocolTest.VirtualTimeTest. (Closed)
Patch Set: Created 3 years, 9 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: content/browser/devtools/protocol/devtools_protocol_browsertest.cc
diff --git a/content/browser/devtools/protocol/devtools_protocol_browsertest.cc b/content/browser/devtools/protocol/devtools_protocol_browsertest.cc
index 17c51dc91c9864486b666a368ea58f843419b353..9166cfe3e5e654ad3b0cd9dedf3c022a34d9fa88 100644
--- a/content/browser/devtools/protocol/devtools_protocol_browsertest.cc
+++ b/content/browser/devtools/protocol/devtools_protocol_browsertest.cc
@@ -1314,7 +1314,13 @@ IN_PROC_BROWSER_TEST_F(DevToolsProtocolTest,
.size());
}
-IN_PROC_BROWSER_TEST_F(DevToolsProtocolTest, VirtualTimeTest) {
+// TODO(701223): Enable this on android.
+#if defined(OS_ANDROID)
+#define MAYBE_VirtualTimeTest DISABLED_VirtualTimeTest
+#else
+#define MAYBE_VirtualTimeTest VirtualTimeTest
+#endif
+IN_PROC_BROWSER_TEST_F(DevToolsProtocolTest, MAYBE_VirtualTimeTest) {
NavigateToURLBlockUntilNavigationsComplete(shell(), GURL("about:blank"), 1);
Attach();
« 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