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

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

Issue 10958026: Port ppapi_ppb_core nacl_integration test to browser_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dependancies. Created 8 years, 2 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 NACL_BROWSER_TEST_F(NaClBrowserTest, SimpleLoad, { 9 NACL_BROWSER_TEST_F(NaClBrowserTest, SimpleLoad, {
10 RunLoadTest(FILE_PATH_LITERAL("nacl_load_test.html")); 10 RunLoadTest(FILE_PATH_LITERAL("nacl_load_test.html"));
11 }) 11 })
12 12
13 NACL_BROWSER_TEST_F(NaClBrowserTest, ExitStatus, { 13 NACL_BROWSER_TEST_F(NaClBrowserTest, ExitStatus, {
14 RunNaClIntegrationTest(FILE_PATH_LITERAL( 14 RunNaClIntegrationTest(FILE_PATH_LITERAL(
15 "pm_exit_status_test.html?trigger=exit0&expected_exit=0")); 15 "pm_exit_status_test.html?trigger=exit0&expected_exit=0"));
16 RunNaClIntegrationTest(FILE_PATH_LITERAL( 16 RunNaClIntegrationTest(FILE_PATH_LITERAL(
17 "pm_exit_status_test.html?trigger=exit7&expected_exit=7")); 17 "pm_exit_status_test.html?trigger=exit7&expected_exit=7"));
18 RunNaClIntegrationTest(FILE_PATH_LITERAL( 18 RunNaClIntegrationTest(FILE_PATH_LITERAL(
19 "pm_exit_status_test.html?trigger=exit254&expected_exit=254")); 19 "pm_exit_status_test.html?trigger=exit254&expected_exit=254"));
20 RunNaClIntegrationTest(FILE_PATH_LITERAL( 20 RunNaClIntegrationTest(FILE_PATH_LITERAL(
21 "pm_exit_status_test.html?trigger=exitneg2&expected_exit=254")); 21 "pm_exit_status_test.html?trigger=exitneg2&expected_exit=254"));
22 }) 22 })
23 23
24 NACL_BROWSER_TEST_F(NaClBrowserTest, PPAPICore, {
25 RunNaClIntegrationTest(FILE_PATH_LITERAL("ppapi_ppb_core.html"));
26 })
27
24 } // namespace anonymous 28 } // namespace anonymous
OLDNEW
« no previous file with comments | « chrome/test/data/nacl/ppapi/ppb_core/ppapi_ppb_core.html ('k') | ppapi/native_client/ppapi_scons_files.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698