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

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: Merge with master. 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
« no previous file with comments | « chrome/test/data/nacl/pnacl_dyncode_syscall_disabled/pnacl_dyncode_syscall_disabled.html ('k') | 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 "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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, 92 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
93 MAYBE_PNACL(PnaclNMFOptionsOlarge)) { 93 MAYBE_PNACL(PnaclNMFOptionsOlarge)) {
94 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_large")); 94 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_large"));
95 } 95 }
96 96
97 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl, 97 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
98 MAYBE_PNACL(PnaclNMFOptionsTimePasses)) { 98 MAYBE_PNACL(PnaclNMFOptionsTimePasses)) {
99 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=time_passes")); 99 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=time_passes"));
100 } 100 }
101 101
102 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
103 MAYBE_PNACL(PnaclDyncodeSyscallDisabled)) {
104 RunNaClIntegrationTest(FILE_PATH_LITERAL(
105 "pnacl_dyncode_syscall_disabled.html"));
106 }
107
102 } // namespace anonymous 108 } // namespace anonymous
OLDNEW
« no previous file with comments | « chrome/test/data/nacl/pnacl_dyncode_syscall_disabled/pnacl_dyncode_syscall_disabled.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698