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

Side by Side Diff: chrome/test/nacl/nacl_browsertest.cc

Issue 14154005: Add dyncode syscall disabled test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
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 "chrome/test/nacl/nacl_browsertest_util.h" 5 #include "chrome/test/nacl/nacl_browsertest_util.h"
6 6
7 namespace { 7 namespace {
8 8
9 // These tests fail on Linux ASAN bots: <http://crbug.com/161709>. 9 // These tests fail on Linux ASAN bots: <http://crbug.com/161709>.
10 #if defined(OS_LINUX) && defined(ADDRESS_SANITIZER) 10 #if defined(OS_LINUX) && defined(ADDRESS_SANITIZER)
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, 87 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
88 MAYBE_PNACL(PnaclNMFOptionsOlarge)) { 88 MAYBE_PNACL(PnaclNMFOptionsOlarge)) {
89 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_large")); 89 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_large"));
90 } 90 }
91 91
92 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, 92 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
93 MAYBE_PNACL(PnaclNMFOptionsTimePasses)) { 93 MAYBE_PNACL(PnaclNMFOptionsTimePasses)) {
94 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=time_passes")); 94 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=time_passes"));
95 } 95 }
96 96
97 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
98 MAYBE_PNACL(PnaclDyncodeSyscallDisabled)) {
99 RunNaClIntegrationTest(FILE_PATH_LITERAL(
100 "pnacl_dyncode_syscall_disabled.html"));
101 }
102
97 } // namespace anonymous 103 } // namespace anonymous
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698