| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 #define MAYBE_PnaclErrorHandling PnaclErrorHandling | 383 #define MAYBE_PnaclErrorHandling PnaclErrorHandling |
| 384 #endif | 384 #endif |
| 385 | 385 |
| 386 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, | 386 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, |
| 387 MAYBE_PnaclErrorHandling) { | 387 MAYBE_PnaclErrorHandling) { |
| 388 RunNaClIntegrationTest(FILE_PATH_LITERAL("pnacl_error_handling.html")); | 388 RunNaClIntegrationTest(FILE_PATH_LITERAL("pnacl_error_handling.html")); |
| 389 } | 389 } |
| 390 | 390 |
| 391 // Test Subzero. Subzero is triggered by the O0 option so reuse | 391 // Test Subzero. Subzero is triggered by the O0 option so reuse |
| 392 // test harnesses that use "optlevel": 0. | 392 // test harnesses that use "optlevel": 0. |
| 393 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnaclSubzero, PnaclErrorHandling) { | 393 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnaclSubzero, MAYBE_PnaclErrorHandling) { |
| 394 RunNaClIntegrationTest(FILE_PATH_LITERAL("pnacl_error_handling.html")); | 394 RunNaClIntegrationTest(FILE_PATH_LITERAL("pnacl_error_handling.html")); |
| 395 } | 395 } |
| 396 | 396 |
| 397 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, | 397 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, |
| 398 MAYBE_PNACL(PnaclNMFOptionsO0)) { | 398 MAYBE_PNACL(PnaclNMFOptionsO0)) { |
| 399 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_0")); | 399 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_0")); |
| 400 } | 400 } |
| 401 | 401 |
| 402 // Test Subzero. Subzero is triggered by the O0 option so reuse | 402 // Test Subzero. Subzero is triggered by the O0 option so reuse |
| 403 // test harnesses that use "optlevel": 0. | 403 // test harnesses that use "optlevel": 0. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 433 } | 433 } |
| 434 | 434 |
| 435 // TODO(ncbray) support glibc and PNaCl | 435 // TODO(ncbray) support glibc and PNaCl |
| 436 // flaky: crbug.com/375894 | 436 // flaky: crbug.com/375894 |
| 437 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlibExtension, DISABLED_MimeHandler) { | 437 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlibExtension, DISABLED_MimeHandler) { |
| 438 RunNaClIntegrationTest(FILE_PATH_LITERAL( | 438 RunNaClIntegrationTest(FILE_PATH_LITERAL( |
| 439 "ppapi_extension_mime_handler.html")); | 439 "ppapi_extension_mime_handler.html")); |
| 440 } | 440 } |
| 441 | 441 |
| 442 } // namespace | 442 } // namespace |
| OLD | NEW |