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 "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/public/common/content_switches.h" | 9 #include "content/public/common/content_switches.h" |
10 #include "content/common/pepper_plugin_registry.h" | 10 #include "content/common/pepper_plugin_registry.h" |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 #endif | 662 #endif |
663 | 663 |
664 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 664 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
665 // Not implemented out of process: http://crbug.com/106129 | 665 // Not implemented out of process: http://crbug.com/106129 |
666 TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 666 TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
667 RunTestViaHTTP("DirectoryReader"); | 667 RunTestViaHTTP("DirectoryReader"); |
668 } | 668 } |
669 | 669 |
670 #if defined(ENABLE_P2P_APIS) | 670 #if defined(ENABLE_P2P_APIS) |
671 // Flaky. http://crbug.com/84294 | 671 // Flaky. http://crbug.com/84294 |
672 TEST_F(PPAPITest, FLAKY_Transport) { | 672 TEST_F(PPAPITest, DISABLED_Transport) { |
673 RunTest("Transport"); | 673 RunTest("Transport"); |
674 } | 674 } |
675 // http://crbug.com/89961 | 675 // http://crbug.com/89961 |
676 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { | 676 TEST_F(OutOfProcessPPAPITest, DISABLED_Transport) { |
677 RunTestViaHTTP("Transport"); | 677 RunTestViaHTTP("Transport"); |
678 } | 678 } |
679 #endif // ENABLE_P2P_APIS | 679 #endif // ENABLE_P2P_APIS |
680 | 680 |
681 // There is no proxy. This is used for PDF metrics reporting, and PDF only | 681 // There is no proxy. This is used for PDF metrics reporting, and PDF only |
682 // runs in process, so there's currently no need for a proxy. | 682 // runs in process, so there's currently no need for a proxy. |
683 TEST_PPAPI_IN_PROCESS(UMA) | 683 TEST_PPAPI_IN_PROCESS(UMA) |
684 | 684 |
685 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreEqual) | 685 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreEqual) |
686 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreHostsEqual) | 686 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreHostsEqual) |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
832 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 832 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
833 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 833 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
834 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 834 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
835 | 835 |
836 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 836 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
837 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 837 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
838 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 838 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
839 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 839 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
840 | 840 |
841 #endif // ADDRESS_SANITIZER | 841 #endif // ADDRESS_SANITIZER |
OLD | NEW |