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/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 // See bug for history. | 437 // See bug for history. |
438 #if !defined(ADDRESS_SANITIZER) | 438 #if !defined(ADDRESS_SANITIZER) |
439 | 439 |
440 TEST_PPAPI_IN_PROCESS(Broker) | 440 TEST_PPAPI_IN_PROCESS(Broker) |
441 // Flaky, http://crbug.com/111355 | 441 // Flaky, http://crbug.com/111355 |
442 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Broker) | 442 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Broker) |
443 | 443 |
444 TEST_PPAPI_IN_PROCESS(Core) | 444 TEST_PPAPI_IN_PROCESS(Core) |
445 TEST_PPAPI_OUT_OF_PROCESS(Core) | 445 TEST_PPAPI_OUT_OF_PROCESS(Core) |
446 | 446 |
447 // Times out on Linux. http://crbug.com/108180 | |
448 #if defined(OS_LINUX) | |
449 #define MAYBE_CursorControl DISABLED_CursorControl | |
450 #else | |
451 #define MAYBE_CursorControl CursorControl | |
452 #endif | |
453 | |
454 TEST_PPAPI_IN_PROCESS(MAYBE_CursorControl) | |
455 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_CursorControl) | |
456 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_CursorControl) | |
457 | |
458 // Times out on Linux. http://crbug.com/108859 | 447 // Times out on Linux. http://crbug.com/108859 |
459 #if defined(OS_LINUX) | 448 #if defined(OS_LINUX) |
460 #define MAYBE_InputEvent DISABLED_InputEvent | 449 #define MAYBE_InputEvent DISABLED_InputEvent |
461 #elif defined(OS_MACOSX) | 450 #elif defined(OS_MACOSX) |
462 // Flaky on Mac. http://crbug.com/109258 | 451 // Flaky on Mac. http://crbug.com/109258 |
463 #define MAYBE_InputEvent DISABLED_InputEvent | 452 #define MAYBE_InputEvent DISABLED_InputEvent |
464 #else | 453 #else |
465 #define MAYBE_InputEvent InputEvent | 454 #define MAYBE_InputEvent InputEvent |
466 #endif | 455 #endif |
467 | 456 |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1032 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) | 1021 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) |
1033 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) | 1022 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) |
1034 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) | 1023 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) |
1035 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) | 1024 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) |
1036 | 1025 |
1037 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) | 1026 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) |
1038 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1027 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) |
1039 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) | 1028 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) |
1040 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1029 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
1041 | 1030 |
| 1031 TEST_PPAPI_IN_PROCESS(MouseCursor) |
| 1032 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
| 1033 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) |
| 1034 |
1042 #endif // ADDRESS_SANITIZER | 1035 #endif // ADDRESS_SANITIZER |
OLD | NEW |