| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_ui_test.h" | 5 #include "chrome/test/nacl/nacl_ui_test.h" |
| 6 | 6 |
| 7 // TODO(jvoung) see what includes we really need. | 7 // TODO(jvoung) see what includes we really need. |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "chrome/common/chrome_paths.h" | 10 #include "chrome/common/chrome_paths.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 TEST_F(NaClUITest, SrpcSockAddrTest) { | 53 TEST_F(NaClUITest, SrpcSockAddrTest) { |
| 54 FilePath test_file(kSrpcSockAddrHtmlFileName); | 54 FilePath test_file(kSrpcSockAddrHtmlFileName); |
| 55 RunTest(test_file, action_max_timeout_ms()); | 55 RunTest(test_file, action_max_timeout_ms()); |
| 56 } | 56 } |
| 57 | 57 |
| 58 TEST_F(NaClUITest, SrpcShmTest) { | 58 TEST_F(NaClUITest, SrpcShmTest) { |
| 59 FilePath test_file(kSrpcShmHtmlFileName); | 59 FilePath test_file(kSrpcShmHtmlFileName); |
| 60 RunTest(test_file, action_max_timeout_ms()); | 60 RunTest(test_file, action_max_timeout_ms()); |
| 61 } | 61 } |
| 62 | 62 |
| 63 TEST_F(NaClUITest, FLAKY_SrpcPluginTest) { | 63 TEST_F(NaClUITest, SrpcPluginTest) { |
| 64 FilePath test_file(kSrpcPluginHtmlFileName); | 64 FilePath test_file(kSrpcPluginHtmlFileName); |
| 65 RunTest(test_file, action_max_timeout_ms()); | 65 RunTest(test_file, action_max_timeout_ms()); |
| 66 } | 66 } |
| 67 | 67 |
| 68 TEST_F(NaClUITest, SrpcNrdXferTest) { | 68 TEST_F(NaClUITest, SrpcNrdXferTest) { |
| 69 FilePath test_file(kSrpcNrdXferHtmlFileName); | 69 FilePath test_file(kSrpcNrdXferHtmlFileName); |
| 70 RunTest(test_file, action_max_timeout_ms()); | 70 RunTest(test_file, action_max_timeout_ms()); |
| 71 } | 71 } |
| 72 | 72 |
| 73 TEST_F(NaClUITest, NpapiHwTest) { | 73 TEST_F(NaClUITest, NpapiHwTest) { |
| 74 FilePath test_file(kNpapiHwHtmlFileName); | 74 FilePath test_file(kNpapiHwHtmlFileName); |
| 75 RunTest(test_file, action_max_timeout_ms()); | 75 RunTest(test_file, action_max_timeout_ms()); |
| 76 } | 76 } |
| 77 | 77 |
| 78 TEST_F(NaClUITest, MultiarchTest) { | 78 TEST_F(NaClUITest, MultiarchTest) { |
| 79 FilePath test_file(kSrpcHwHtmlFileName); | 79 FilePath test_file(kSrpcHwHtmlFileName); |
| 80 RunMultiarchTest(test_file, action_max_timeout_ms()); | 80 RunMultiarchTest(test_file, action_max_timeout_ms()); |
| 81 } | 81 } |
| 82 | 82 |
| OLD | NEW |