| 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/ppapi/ppapi_test.h" | 5 #include "chrome/test/ppapi/ppapi_test.h" |
| 6 | 6 |
| 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 "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
| 10 #include "chrome/browser/ui/browser_navigator.h" | 10 #include "chrome/browser/ui/browser_navigator.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 #if !defined(ADDRESS_SANITIZER) | 133 #if !defined(ADDRESS_SANITIZER) |
| 134 | 134 |
| 135 TEST_PPAPI_IN_PROCESS(Broker) | 135 TEST_PPAPI_IN_PROCESS(Broker) |
| 136 // Flaky, http://crbug.com/111355 | 136 // Flaky, http://crbug.com/111355 |
| 137 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Broker) | 137 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Broker) |
| 138 | 138 |
| 139 TEST_PPAPI_IN_PROCESS(Core) | 139 TEST_PPAPI_IN_PROCESS(Core) |
| 140 TEST_PPAPI_OUT_OF_PROCESS(Core) | 140 TEST_PPAPI_OUT_OF_PROCESS(Core) |
| 141 TEST_PPAPI_NACL_VIA_HTTP(Core) | 141 TEST_PPAPI_NACL_VIA_HTTP(Core) |
| 142 | 142 |
| 143 #if defined(OS_CHROMEOS) |
| 144 #define MAYBE_InputEvent InputEvent |
| 145 #elif defined(OS_LINUX) |
| 143 // Times out on Linux. http://crbug.com/108859 | 146 // Times out on Linux. http://crbug.com/108859 |
| 144 #if defined(OS_LINUX) | |
| 145 #define MAYBE_InputEvent DISABLED_InputEvent | 147 #define MAYBE_InputEvent DISABLED_InputEvent |
| 146 #elif defined(OS_MACOSX) | 148 #elif defined(OS_MACOSX) |
| 147 // Flaky on Mac. http://crbug.com/109258 | 149 // Flaky on Mac. http://crbug.com/109258 |
| 148 #define MAYBE_InputEvent DISABLED_InputEvent | 150 #define MAYBE_InputEvent DISABLED_InputEvent |
| 149 #else | 151 #else |
| 150 #define MAYBE_InputEvent InputEvent | 152 #define MAYBE_InputEvent InputEvent |
| 151 #endif | 153 #endif |
| 152 | 154 |
| 153 // Flaky on Linux and Windows. http://crbug.com/135403 | 155 // Flaky on Linux and Windows. http://crbug.com/135403 |
| 154 #if defined(OS_LINUX) || defined(OS_WIN) | 156 #if defined(OS_LINUX) || defined(OS_WIN) |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 811 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 810 | 812 |
| 811 TEST_PPAPI_IN_PROCESS(MouseCursor) | 813 TEST_PPAPI_IN_PROCESS(MouseCursor) |
| 812 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 814 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
| 813 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) | 815 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) |
| 814 | 816 |
| 815 // Only enabled in out-of-process mode. | 817 // Only enabled in out-of-process mode. |
| 816 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) | 818 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) |
| 817 | 819 |
| 818 #endif // ADDRESS_SANITIZER | 820 #endif // ADDRESS_SANITIZER |
| OLD | NEW |