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

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

Issue 12623004: Allow PNaCl NMF to set translator optimization options for experimentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Default to -O0 instead of the default for now Created 7 years, 9 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 } 67 }
68 68
69 IN_PROC_BROWSER_TEST_F(NaClBrowserTestStatic, MAYBE_SameOriginCookie) { 69 IN_PROC_BROWSER_TEST_F(NaClBrowserTestStatic, MAYBE_SameOriginCookie) {
70 RunLoadTest(FILE_PATH_LITERAL("cross_origin/same_origin_cookie.html")); 70 RunLoadTest(FILE_PATH_LITERAL("cross_origin/same_origin_cookie.html"));
71 } 71 }
72 72
73 IN_PROC_BROWSER_TEST_F(NaClBrowserTestStatic, MAYBE_CORSNoCookie) { 73 IN_PROC_BROWSER_TEST_F(NaClBrowserTestStatic, MAYBE_CORSNoCookie) {
74 RunLoadTest(FILE_PATH_LITERAL("cross_origin/cors_no_cookie.html")); 74 RunLoadTest(FILE_PATH_LITERAL("cross_origin/cors_no_cookie.html"));
75 } 75 }
76 76
77 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
78 MAYBE_PNACL(PnaclNMFOptionsO0)) {
79 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_0"));
80 }
81
82 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
83 MAYBE_PNACL(PnaclNMFOptionsO2)) {
84 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_2"));
85 }
86
87 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
88 MAYBE_PNACL(PnaclNMFOptionsOlarge)) {
89 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_large"));
90 }
91
92 IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
93 MAYBE_PNACL(PnaclNMFOptionsTimePasses)) {
94 RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=time_passes"));
95 }
96
77 } // namespace anonymous 97 } // namespace anonymous
OLDNEW
« no previous file with comments | « chrome/test/data/nacl/pnacl_nmf_options/pnacl_time_passes.nmf ('k') | chrome/test/nacl/nacl_browsertest_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698