| 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/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
| 9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
| 10 #include "base/test/test_timeouts.h" | 10 #include "base/test/test_timeouts.h" |
| (...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 #define MAYBE_Fullscreen DISABLED_Fullscreen | 717 #define MAYBE_Fullscreen DISABLED_Fullscreen |
| 718 #else | 718 #else |
| 719 #define MAYBE_Fullscreen Fullscreen | 719 #define MAYBE_Fullscreen Fullscreen |
| 720 #endif | 720 #endif |
| 721 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) | 721 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) |
| 722 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) | 722 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen) |
| 723 | 723 |
| 724 TEST_PPAPI_IN_PROCESS(FlashClipboard) | 724 TEST_PPAPI_IN_PROCESS(FlashClipboard) |
| 725 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 725 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 726 | 726 |
| 727 TEST_PPAPI_IN_PROCESS(FlashX509Certificate) |
| 728 TEST_PPAPI_OUT_OF_PROCESS(FlashX509Certificate) |
| 729 |
| 727 // http://crbug.com/63239 | 730 // http://crbug.com/63239 |
| 728 #if defined(OS_POSIX) | 731 #if defined(OS_POSIX) |
| 729 #define MAYBE_DirectoryReader DISABLED_DirectoryReader | 732 #define MAYBE_DirectoryReader DISABLED_DirectoryReader |
| 730 #else | 733 #else |
| 731 #define MAYBE_DirectoryReader DirectoryReader | 734 #define MAYBE_DirectoryReader DirectoryReader |
| 732 #endif | 735 #endif |
| 733 | 736 |
| 734 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 | 737 // Flaky on Mac + Linux, maybe http://codereview.chromium.org/7094008 |
| 735 // Not implemented out of process: http://crbug.com/106129 | 738 // Not implemented out of process: http://crbug.com/106129 |
| 736 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { | 739 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_DirectoryReader) { |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 954 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
| 952 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 955 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
| 953 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 956 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
| 954 | 957 |
| 955 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 958 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
| 956 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 959 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 957 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 960 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
| 958 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 961 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 959 | 962 |
| 960 #endif // ADDRESS_SANITIZER | 963 #endif // ADDRESS_SANITIZER |
| OLD | NEW |