| 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/path_service.h" | 5 #include "base/path_service.h" |
| 6 #include "base/test/test_timeouts.h" | 6 #include "base/test/test_timeouts.h" |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "chrome/browser/extensions/extension_browsertest.h" | 8 #include "chrome/browser/extensions/extension_browsertest.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 #define MAYBE_UDPSocket_Broadcast DISABLED_UDPSocket_Broadcast | 342 #define MAYBE_UDPSocket_Broadcast DISABLED_UDPSocket_Broadcast |
| 343 #else | 343 #else |
| 344 #define MAYBE_UDPSocket_Broadcast UDPSocket_Broadcast | 344 #define MAYBE_UDPSocket_Broadcast UDPSocket_Broadcast |
| 345 #endif | 345 #endif |
| 346 | 346 |
| 347 #define RUN_UDPSOCKET_SUBTESTS \ | 347 #define RUN_UDPSOCKET_SUBTESTS \ |
| 348 RunTestViaHTTP( \ | 348 RunTestViaHTTP( \ |
| 349 LIST_TEST(UDPSocket_ReadWrite) \ | 349 LIST_TEST(UDPSocket_ReadWrite) \ |
| 350 LIST_TEST(UDPSocket_SetOption) \ | 350 LIST_TEST(UDPSocket_SetOption) \ |
| 351 LIST_TEST(MAYBE_UDPSocket_Broadcast) \ | 351 LIST_TEST(MAYBE_UDPSocket_Broadcast) \ |
| 352 ) | 352 LIST_TEST(UDPSocket_ParallelSend)) |
| 353 | 353 |
| 354 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, UDPSocket) { | 354 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, UDPSocket) { |
| 355 RUN_UDPSOCKET_SUBTESTS; | 355 RUN_UDPSOCKET_SUBTESTS; |
| 356 } | 356 } |
| 357 IN_PROC_BROWSER_TEST_F(PPAPINaClNewlibTest, UDPSocket) { | 357 IN_PROC_BROWSER_TEST_F(PPAPINaClNewlibTest, UDPSocket) { |
| 358 RUN_UDPSOCKET_SUBTESTS; | 358 RUN_UDPSOCKET_SUBTESTS; |
| 359 } | 359 } |
| 360 IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(UDPSocket)) { | 360 IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(UDPSocket)) { |
| 361 RUN_UDPSOCKET_SUBTESTS; | 361 RUN_UDPSOCKET_SUBTESTS; |
| 362 } | 362 } |
| (...skipping 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1582 #endif | 1582 #endif |
| 1583 | 1583 |
| 1584 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(Mojo)) { | 1584 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(Mojo)) { |
| 1585 RunTest(); | 1585 RunTest(); |
| 1586 } | 1586 } |
| 1587 | 1587 |
| 1588 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(MojoFailsWithoutFlag)) { | 1588 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(MojoFailsWithoutFlag)) { |
| 1589 RunTestWithoutFlag(); | 1589 RunTestWithoutFlag(); |
| 1590 } | 1590 } |
| 1591 #endif | 1591 #endif |
| OLD | NEW |