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

Unified Diff: chrome/test/plugin/pdf_browsertest.cc

Issue 5121006: Don't load "sample.pdf" on Mac now since it's a known crash. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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: chrome/test/plugin/pdf_browsertest.cc
===================================================================
--- chrome/test/plugin/pdf_browsertest.cc (revision 66548)
+++ chrome/test/plugin/pdf_browsertest.cc (working copy)
@@ -300,6 +300,12 @@
!file_path.empty();
file_path = file_enumerator.Next()) {
std::string filename = WideToASCII(file_path.BaseName().ToWStringHack());
+
+#if defined(OS_MACOSX)
+ if (filename == "sample.pdf")
+ continue; // Crashes on Mac. http://crbug.com/63549
+#endif
+
LOG(WARNING) << "PDFBrowserTest.Loading: " << filename;
GURL url = test_server()->GetURL(base_url + filename);
« 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