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

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

Issue 512323002: NaCl: Detect plugin crashes via EOF on Chromium IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 3 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 | components/nacl/renderer/ppb_nacl_private_impl.cc » ('j') | 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 <stdio.h> 5 #include <stdio.h>
6 #if defined(OS_POSIX) 6 #if defined(OS_POSIX)
7 #include <unistd.h> 7 #include <unistd.h>
8 #elif defined(OS_WIN) 8 #elif defined(OS_WIN)
9 #include <windows.h> 9 #include <windows.h>
10 #endif 10 #endif
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 // partially_invalid.c does not have an ARM version of its asm. 100 // partially_invalid.c does not have an ARM version of its asm.
101 #if !defined(__arm__) 101 #if !defined(__arm__)
102 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, BadNative) { 102 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, BadNative) {
103 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_bad_native.html")); 103 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_bad_native.html"));
104 } 104 }
105 #endif 105 #endif
106 106
107 #if defined(OS_WIN) 107 #if defined(OS_WIN)
108 // crbug.com/98721 108 // crbug.com/98721
109 # define MAYBE_Crash DISABLED_Crash 109 # define MAYBE_Crash DISABLED_Crash
110 #elif defined(OS_LINUX)
111 // crbug.com/366334
112 # define MAYBE_Crash DISABLED_Crash
113 #else 110 #else
114 # define MAYBE_Crash Crash 111 # define MAYBE_Crash Crash
115 #endif 112 #endif
116 NACL_BROWSER_TEST_F(NaClBrowserTest, MAYBE_Crash, { 113 NACL_BROWSER_TEST_F(NaClBrowserTest, MAYBE_Crash, {
117 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_crash.html")); 114 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_crash.html"));
118 }) 115 })
119 116
120 // PNaCl version does not work. 117 // PNaCl version does not work.
121 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, ManifestFile) { 118 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlib, ManifestFile) {
122 RunNaClIntegrationTest(FILE_PATH_LITERAL("pm_manifest_file_test.html")); 119 RunNaClIntegrationTest(FILE_PATH_LITERAL("pm_manifest_file_test.html"));
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 } 375 }
379 376
380 // TODO(ncbray) support glibc and PNaCl 377 // TODO(ncbray) support glibc and PNaCl
381 // flaky: crbug.com/375894 378 // flaky: crbug.com/375894
382 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlibExtension, DISABLED_MimeHandler) { 379 IN_PROC_BROWSER_TEST_F(NaClBrowserTestNewlibExtension, DISABLED_MimeHandler) {
383 RunNaClIntegrationTest(FILE_PATH_LITERAL( 380 RunNaClIntegrationTest(FILE_PATH_LITERAL(
384 "ppapi_extension_mime_handler.html")); 381 "ppapi_extension_mime_handler.html"));
385 } 382 }
386 383
387 } // namespace 384 } // namespace
OLDNEW
« no previous file with comments | « no previous file | components/nacl/renderer/ppb_nacl_private_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698