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

Unified Diff: third_party/WebKit/Source/core/frame/UseCounterTest.cpp

Issue 2523083002: Disabling UseCounterTest.SVGImageContext and InspectorDisablesMeasurement on Android (Closed)
Patch Set: Created 4 years, 1 month 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: third_party/WebKit/Source/core/frame/UseCounterTest.cpp
diff --git a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
index eb9b0df90882e972f7fd1b5521cc63e9d9b7bcbf..6430ab4f97ed24ef0da20e91bed6d343524e50b8 100644
--- a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
@@ -187,7 +187,14 @@ TEST(UseCounterTest, RecordingCSSProperties) {
histogramTester.expectTotalCount(kSVGCSSHistogramName, 0);
}
-TEST(UseCounterTest, SVGImageContext) {
+// Failing on Android: crbug.com/667913
+#if OS(ANDROID)
+#define MAYBE_SVGImageContext DISABLED_SVGImageContext
+#else
+#define MAYBE_SVGImageContext SVGImageContext
+#endif
+
+TEST(UseCounterTest, MAYBE_SVGImageContext) {
UseCounter useCounter(UseCounter::SVGImageContext);
HistogramTester histogramTester;
@@ -236,6 +243,13 @@ TEST(UseCounterTest, SVGImageContext) {
histogramTester.expectTotalCount(kFeaturesHistogramName, 0);
}
+// Failing on Android: crbug.com/667913
+#if OS(ANDROID)
+#define MAYBE_InspectorDisablesMeasurement DISABLED_InspectorDisablesMeasurement
+#else
+#define MAYBE_InspectorDisablesMeasurement InspectorDisablesMeasurement
+#endif
+
TEST(UseCounterTest, InspectorDisablesMeasurement) {
UseCounter useCounter;
HistogramTester histogramTester;
« 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