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 "chrome/test/ui/ppapi_uitest.h" | 5 #include "chrome/test/ui/ppapi_uitest.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 #else | 841 #else |
842 #define MAYBE_DirectoryReader DirectoryReader | 842 #define MAYBE_DirectoryReader DirectoryReader |
843 #endif | 843 #endif |
844 | 844 |
845 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 845 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
846 // Not implemented out of process: http://crbug.com/106129 | 846 // Not implemented out of process: http://crbug.com/106129 |
847 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 847 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
848 RunTestViaHTTP("DirectoryReader"); | 848 RunTestViaHTTP("DirectoryReader"); |
849 } | 849 } |
850 | 850 |
851 #if defined(ENABLE_P2P_APIS) | |
852 // Flaky. http://crbug.com/84294 | |
853 IN_PROC_BROWSER_TEST_F(PPAPITest, DISABLED_Transport) { | |
854 RunTest("Transport"); | |
855 } | |
856 // http://crbug.com/89961 | |
857 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, DISABLED_Transport) { | |
858 RunTestViaHTTP("Transport"); | |
859 } | |
860 #endif // ENABLE_P2P_APIS | |
861 | |
862 // There is no proxy. This is used for PDF metrics reporting, and PDF only | 851 // There is no proxy. This is used for PDF metrics reporting, and PDF only |
863 // runs in process, so there's currently no need for a proxy. | 852 // runs in process, so there's currently no need for a proxy. |
864 TEST_PPAPI_IN_PROCESS(UMA) | 853 TEST_PPAPI_IN_PROCESS(UMA) |
865 | 854 |
866 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreEqual) | 855 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreEqual) |
867 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreHostsEqual) | 856 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_AreHostsEqual) |
868 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_Describe) | 857 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_Describe) |
869 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_ReplacePort) | 858 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_ReplacePort) |
870 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_GetAnyAddress) | 859 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_GetAnyAddress) |
871 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_DescribeIPv6) | 860 TEST_PPAPI_IN_PROCESS(NetAddressPrivate_DescribeIPv6) |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1077 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 1066 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
1078 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1067 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
1079 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 1068 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
1080 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1069 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
1081 | 1070 |
1082 TEST_PPAPI_IN_PROCESS(MouseCursor) | 1071 TEST_PPAPI_IN_PROCESS(MouseCursor) |
1083 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 1072 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
1084 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) | 1073 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) |
1085 | 1074 |
1086 #endif // ADDRESS_SANITIZER | 1075 #endif // ADDRESS_SANITIZER |
OLD | NEW |