Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/plugin_service.h" | 9 #include "content/browser/plugin_service.h" |
| 10 #include "content/public/common/content_switches.h" | 10 #include "content/public/common/content_switches.h" |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 281 } | 281 } |
| 282 TEST_PPAPI_NACL_VIA_HTTP(Scrollbar) | 282 TEST_PPAPI_NACL_VIA_HTTP(Scrollbar) |
| 283 | 283 |
| 284 TEST_PPAPI_IN_PROCESS(URLUtil) | 284 TEST_PPAPI_IN_PROCESS(URLUtil) |
| 285 TEST_PPAPI_OUT_OF_PROCESS(URLUtil) | 285 TEST_PPAPI_OUT_OF_PROCESS(URLUtil) |
| 286 | 286 |
| 287 TEST_PPAPI_IN_PROCESS(CharSet) | 287 TEST_PPAPI_IN_PROCESS(CharSet) |
| 288 TEST_PPAPI_OUT_OF_PROCESS(CharSet) | 288 TEST_PPAPI_OUT_OF_PROCESS(CharSet) |
| 289 | 289 |
| 290 TEST_PPAPI_IN_PROCESS(Crypto) | 290 TEST_PPAPI_IN_PROCESS(Crypto) |
| 291 TEST_PPAPI_OUT_OF_PROCESS(Crypto) | 291 #if defined(OS_POSIX) |
| 292 #define MAYBE_Crypto DISABLED_Crypto | |
| 293 #else | |
| 294 #define MAYBE_Crypto Crypto | |
| 295 #endif | |
| 296 // http://crbug.com/104832 fails on ASAN, so this is an overly broad disable. | |
| 297 // But ASAN currently doesn't have a way to disable specific tests. | |
| 298 TEST_F(OutOfProcessPPAPITest, Crypto) { | |
|
Nico
2012/04/06 14:50:18
Shouldn't this say MAYE_Crypto?
(Apologies if the
| |
| 299 RunTest("Crypto"); | |
| 300 } | |
| 292 | 301 |
| 293 TEST_PPAPI_IN_PROCESS(Var) | 302 TEST_PPAPI_IN_PROCESS(Var) |
| 294 // http://crbug.com/89961 | 303 // http://crbug.com/89961 |
| 295 TEST_F(OutOfProcessPPAPITest, FAILS_Var) { | 304 TEST_F(OutOfProcessPPAPITest, FAILS_Var) { |
| 296 RunTest("Var"); | 305 RunTest("Var"); |
| 297 } | 306 } |
| 298 TEST_PPAPI_NACL_VIA_HTTP(Var) | 307 TEST_PPAPI_NACL_VIA_HTTP(Var) |
| 299 | 308 |
| 300 TEST_PPAPI_IN_PROCESS(VarDeprecated) | 309 TEST_PPAPI_IN_PROCESS(VarDeprecated) |
| 301 // Disabled because it times out: http://crbug.com/89961 | 310 // Disabled because it times out: http://crbug.com/89961 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 426 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) | 435 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 427 TEST_PPAPI_IN_PROCESS(Flash_GetCommandLineArgs) | 436 TEST_PPAPI_IN_PROCESS(Flash_GetCommandLineArgs) |
| 428 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetInstanceAlwaysOnTop) | 437 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetInstanceAlwaysOnTop) |
| 429 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) | 438 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) |
| 430 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) | 439 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) |
| 431 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) | 440 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 432 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) | 441 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) |
| 433 | 442 |
| 434 TEST_PPAPI_IN_PROCESS(WebSocket_Create) | 443 TEST_PPAPI_IN_PROCESS(WebSocket_Create) |
| 435 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) | 444 TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket) |
| OLD | NEW |