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

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

Issue 13990006: Revert "Re-enable PPB_TrueTypeFont_Dev tests on Windows." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/test/ppapi/ppapi_browsertest.cc
diff --git a/chrome/test/ppapi/ppapi_browsertest.cc b/chrome/test/ppapi/ppapi_browsertest.cc
index aa1d1376807a04b6d2b3fa0e2da6103c39ad3262..8e28b0c83499fa71809eb314b0aa8b27fb5d6f42 100644
--- a/chrome/test/ppapi/ppapi_browsertest.cc
+++ b/chrome/test/ppapi/ppapi_browsertest.cc
@@ -1209,8 +1209,15 @@ TEST_PPAPI_IN_PROCESS(MouseCursor)
TEST_PPAPI_OUT_OF_PROCESS(MouseCursor)
TEST_PPAPI_NACL(MouseCursor)
-TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont)
-TEST_PPAPI_NACL(TrueTypeFont)
+// On Windows XP, GetTableTags returns an empty list (too small read?).
+// TODO(bbudge) Fix implementations so tests pass on XP.
+#if defined(OS_WIN)
+#define MAYBE_TrueTypeFont DISABLED_TrueTypeFont
+#else
+#define MAYBE_TrueTypeFont TrueTypeFont
+#endif
+TEST_PPAPI_OUT_OF_PROCESS(MAYBE_TrueTypeFont)
+TEST_PPAPI_NACL(MAYBE_TrueTypeFont)
// PPB_Printing only implemented for out of process.
TEST_PPAPI_OUT_OF_PROCESS(Printing)
« 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