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

Unified Diff: content/test/ppapi/ppapi_browsertest.cc

Issue 2071703002: Disable remaining tests that fail on the Linux desktop CrOS GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more tweaking Created 4 years, 6 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
Index: content/test/ppapi/ppapi_browsertest.cc
diff --git a/content/test/ppapi/ppapi_browsertest.cc b/content/test/ppapi/ppapi_browsertest.cc
index 50ae717f229cc7360397fd31fc480900b51ff4b2..db66dff7aec015d9f2a915cf45430dce6cdf89e3 100644
--- a/content/test/ppapi/ppapi_browsertest.cc
+++ b/content/test/ppapi/ppapi_browsertest.cc
@@ -36,7 +36,13 @@ namespace {
RunTest(STRIP_PREFIXES(test_name)); \
}
-TEST_PPAPI_OUT_OF_PROCESS(BrowserFont)
+// Doesn't work in GN CrOS builds yet, http://crbug.com/619765
+#if defined(OS_CHROMEOS)
+#define MAYBE_BrowserFont DISABLED_BrowserFont
stevenjb 2016/06/16 00:32:41 These only fail if defined(USE_OZONE), so maybe on
Dirk Pranke 2016/06/16 00:37:13 ok.
+#else
+#define MAYBE_BrowserFont BrowserFont
+#endif
+TTEST_PPAPI_OUT_OF_PROCESS(BrowserFont)
TEST_PPAPI_IN_PROCESS(Buffer)
TEST_PPAPI_OUT_OF_PROCESS(Buffer)
@@ -131,7 +137,13 @@ TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Scrollbar)
TEST_PPAPI_IN_PROCESS(TraceEvent)
TEST_PPAPI_OUT_OF_PROCESS(TraceEvent)
-TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont)
+// Doesn't work in GN CrOS builds yet, http://crbug.com/619765
+#if defined(OS_CHROMEOS)
+#define MAYBE_TrueTypeFont DISABLED_TrueTypeFont
+#else
+#define MAYBE_TrueTypeFont TrueTypeFont
+#endif
+TEST_PPAPI_OUT_OF_PROCESS(MAYBE_TrueTypeFont)
TEST_PPAPI_IN_PROCESS(URLUtil)
TEST_PPAPI_OUT_OF_PROCESS(URLUtil)

Powered by Google App Engine
This is Rietveld 408576698