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 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 | 1297 |
1298 IN_PROC_BROWSER_TEST_F(PPAPITest, View) { | 1298 IN_PROC_BROWSER_TEST_F(PPAPITest, View) { |
1299 RUN_VIEW_SUBTESTS; | 1299 RUN_VIEW_SUBTESTS; |
1300 } | 1300 } |
1301 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, View) { | 1301 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, View) { |
1302 RUN_VIEW_SUBTESTS; | 1302 RUN_VIEW_SUBTESTS; |
1303 } | 1303 } |
1304 IN_PROC_BROWSER_TEST_F(PPAPINaClNewlibTest, View) { | 1304 IN_PROC_BROWSER_TEST_F(PPAPINaClNewlibTest, View) { |
1305 RUN_VIEW_SUBTESTS; | 1305 RUN_VIEW_SUBTESTS; |
1306 } | 1306 } |
1307 // Disabled due to flakiness under MSAN. See http://crbug.com/450908. | 1307 IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(View)) { |
1308 #if defined(MEMORY_SANITIZER) | |
1309 #define MAYBE_View DISABLED_View | |
1310 #else | |
1311 #define MAYBE_View View | |
1312 #endif | |
1313 IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(MAYBE_View)) { | |
1314 RUN_VIEW_SUBTESTS; | 1308 RUN_VIEW_SUBTESTS; |
1315 } | 1309 } |
1316 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, View) { | 1310 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, View) { |
1317 RUN_VIEW_SUBTESTS; | 1311 RUN_VIEW_SUBTESTS; |
1318 } | 1312 } |
1319 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClNonSfiTest, MAYBE_PNACL_NONSFI(View)) { | 1313 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClNonSfiTest, MAYBE_PNACL_NONSFI(View)) { |
1320 RUN_VIEW_SUBTESTS; | 1314 RUN_VIEW_SUBTESTS; |
1321 } | 1315 } |
1322 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTransitionalNonSfiTest, | 1316 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTransitionalNonSfiTest, |
1323 MAYBE_PNACL_TRANSITIONAL_NONSFI(View)) { | 1317 MAYBE_PNACL_TRANSITIONAL_NONSFI(View)) { |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1584 #endif | 1578 #endif |
1585 | 1579 |
1586 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(Mojo)) { | 1580 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(Mojo)) { |
1587 RunTest(); | 1581 RunTest(); |
1588 } | 1582 } |
1589 | 1583 |
1590 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(MojoFailsWithoutFlag)) { | 1584 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(MojoFailsWithoutFlag)) { |
1591 RunTestWithoutFlag(); | 1585 RunTestWithoutFlag(); |
1592 } | 1586 } |
1593 #endif | 1587 #endif |
OLD | NEW |