| 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 "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 Loading... |
| 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 |
| OLD | NEW |