| 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 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 |
| OLD | NEW |