OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stdio.h> | 5 #include <stdio.h> |
6 #if defined(OS_POSIX) | 6 #if defined(OS_POSIX) |
7 #include <unistd.h> | 7 #include <unistd.h> |
8 #elif defined(OS_WIN) | 8 #elif defined(OS_WIN) |
9 #include <windows.h> | 9 #include <windows.h> |
10 #endif | 10 #endif |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 NACL_BROWSER_TEST_F(NaClBrowserTest, ProgressEvents, { | 80 NACL_BROWSER_TEST_F(NaClBrowserTest, ProgressEvents, { |
81 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_progress_events.html")); | 81 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_progress_events.html")); |
82 }) | 82 }) |
83 | 83 |
84 // Note: currently not run on PNaCl because crash throttling causes the last few | 84 // Note: currently not run on PNaCl because crash throttling causes the last few |
85 // tests to fail for the wrong reasons. Enabling this test would also require | 85 // tests to fail for the wrong reasons. Enabling this test would also require |
86 // creating a new set of manifests because shared NaCl/PNaCl manifests are not | 86 // creating a new set of manifests because shared NaCl/PNaCl manifests are not |
87 // allowed. Also not run on GLibc because it's a large test that is at risk of | 87 // allowed. Also not run on GLibc because it's a large test that is at risk of |
88 // causing timeouts. | 88 // causing timeouts. |
89 // crbug/338444 | 89 // crbug/338444 |
90 // crbug.com/375103: fails on Mac after open sourcing PDF plugin. | 90 #if defined(OS_WIN) |
91 // crbug.com/375103: fails on Linux too after open sourcing PDF plugin. | |
Mark Seaborn
2014/06/19 18:28:14
This issue seems unrelated, since Linux wouldn't b
Nick Bray (chromium)
2014/06/19 18:38:05
The only reason open sourcing the PDF plugin affec
Mark Seaborn
2014/06/19 22:14:32
OK, I see now. That wasn't obvious from the commi
| |
92 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) | |
93 #define MAYBE_Bad DISABLED_Bad | 91 #define MAYBE_Bad DISABLED_Bad |
94 #else | 92 #else |
95 #define MAYBE_Bad Bad | 93 #define MAYBE_Bad Bad |
96 #endif | 94 #endif |
97 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, MAYBE_Bad) { | 95 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, MAYBE_Bad) { |
98 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_bad.html")); | 96 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_bad.html")); |
99 } | 97 } |
100 | 98 |
101 // partially_invalid.c does not have an ARM version of its asm. | 99 // partially_invalid.c does not have an ARM version of its asm. |
102 #if !defined(__arm__) | 100 #if !defined(__arm__) |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
451 #define MAYBE_MimeHandler DISABLED_MimeHandler | 449 #define MAYBE_MimeHandler DISABLED_MimeHandler |
452 #else | 450 #else |
453 #define MAYBE_MimeHandler MimeHandler | 451 #define MAYBE_MimeHandler MimeHandler |
454 #endif | 452 #endif |
455 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlibExtension, MAYBE_MimeHandler) { | 453 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlibExtension, MAYBE_MimeHandler) { |
456 RunNaClIntegrationTest(FILE_PATH_LITERAL( | 454 RunNaClIntegrationTest(FILE_PATH_LITERAL( |
457 "ppapi_extension_mime_handler.html")); | 455 "ppapi_extension_mime_handler.html")); |
458 } | 456 } |
459 | 457 |
460 } // namespace | 458 } // namespace |
OLD | NEW |