Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: chrome/test/ppapi/ppapi_browsertest.cc

Issue 862283003: Disable PPAPINaClGLibcTest.View under MSAN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(View)) { 1307 // Disabled due to flakiness under MSAN. See http://crbug.com/450908.
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)) {
1308 RUN_VIEW_SUBTESTS; 1314 RUN_VIEW_SUBTESTS;
1309 } 1315 }
1310 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, View) { 1316 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, View) {
1311 RUN_VIEW_SUBTESTS; 1317 RUN_VIEW_SUBTESTS;
1312 } 1318 }
1313 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClNonSfiTest, MAYBE_PNACL_NONSFI(View)) { 1319 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClNonSfiTest, MAYBE_PNACL_NONSFI(View)) {
1314 RUN_VIEW_SUBTESTS; 1320 RUN_VIEW_SUBTESTS;
1315 } 1321 }
1316 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTransitionalNonSfiTest, 1322 IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTransitionalNonSfiTest,
1317 MAYBE_PNACL_TRANSITIONAL_NONSFI(View)) { 1323 MAYBE_PNACL_TRANSITIONAL_NONSFI(View)) {
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1578 #endif 1584 #endif
1579 1585
1580 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(Mojo)) { 1586 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(Mojo)) {
1581 RunTest(); 1587 RunTest();
1582 } 1588 }
1583 1589
1584 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(MojoFailsWithoutFlag)) { 1590 IN_PROC_BROWSER_TEST_F(MojoPPAPITest, MAYBE_MOJO(MojoFailsWithoutFlag)) {
1585 RunTestWithoutFlag(); 1591 RunTestWithoutFlag();
1586 } 1592 }
1587 #endif 1593 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698