OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/file_util.h" | 5 #include "base/file_util.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/test/test_timeouts.h" | 7 #include "base/test/test_timeouts.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "content/browser/plugin_service.h" | 9 #include "content/browser/plugin_service.h" |
10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 TEST_PPAPI_IN_PROCESS(FlashClipboard) | 405 TEST_PPAPI_IN_PROCESS(FlashClipboard) |
406 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 406 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
407 | 407 |
408 #if defined(OS_POSIX) | 408 #if defined(OS_POSIX) |
409 #define MAYBE_DirectoryReader FLAKY_DirectoryReader | 409 #define MAYBE_DirectoryReader FLAKY_DirectoryReader |
410 #else | 410 #else |
411 #define MAYBE_DirectoryReader DirectoryReader | 411 #define MAYBE_DirectoryReader DirectoryReader |
412 #endif | 412 #endif |
413 | 413 |
414 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 414 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
| 415 // Not implemented out of process: http://crbug.com/106129 |
415 TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 416 TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
416 RunTestViaHTTP("DirectoryReader"); | 417 RunTestViaHTTP("DirectoryReader"); |
417 } | 418 } |
418 // http://crbug.com/89961 | |
419 TEST_F(OutOfProcessPPAPITest, FAILS_DirectoryReader) { | |
420 RunTestViaHTTP("DirectoryReader"); | |
421 } | |
422 | 419 |
423 #if defined(ENABLE_P2P_APIS) | 420 #if defined(ENABLE_P2P_APIS) |
424 // Flaky. http://crbug.com/84294 | 421 // Flaky. http://crbug.com/84294 |
425 TEST_F(PPAPITest, FLAKY_Transport) { | 422 TEST_F(PPAPITest, FLAKY_Transport) { |
426 RunTest("Transport"); | 423 RunTest("Transport"); |
427 } | 424 } |
428 // http://crbug.com/89961 | 425 // http://crbug.com/89961 |
429 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { | 426 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { |
430 RunTestViaHTTP("Transport"); | 427 RunTestViaHTTP("Transport"); |
431 } | 428 } |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 TEST_PPAPI_OUT_OF_PROCESS(AudioConfig_InvalidConfigs) | 474 TEST_PPAPI_OUT_OF_PROCESS(AudioConfig_InvalidConfigs) |
478 | 475 |
479 TEST_PPAPI_IN_PROCESS(Audio_Creation) | 476 TEST_PPAPI_IN_PROCESS(Audio_Creation) |
480 TEST_PPAPI_IN_PROCESS(Audio_DestroyNoStop) | 477 TEST_PPAPI_IN_PROCESS(Audio_DestroyNoStop) |
481 TEST_PPAPI_IN_PROCESS(Audio_Failures) | 478 TEST_PPAPI_IN_PROCESS(Audio_Failures) |
482 TEST_PPAPI_OUT_OF_PROCESS(Audio_Creation) | 479 TEST_PPAPI_OUT_OF_PROCESS(Audio_Creation) |
483 TEST_PPAPI_OUT_OF_PROCESS(Audio_DestroyNoStop) | 480 TEST_PPAPI_OUT_OF_PROCESS(Audio_DestroyNoStop) |
484 TEST_PPAPI_OUT_OF_PROCESS(Audio_Failures) | 481 TEST_PPAPI_OUT_OF_PROCESS(Audio_Failures) |
485 | 482 |
486 #endif // ADDRESS_SANITIZER | 483 #endif // ADDRESS_SANITIZER |
OLD | NEW |