Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_test.h" | 5 #include "chrome/test/nacl/nacl_test.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "chrome/common/chrome_paths.h" | 9 #include "chrome/common/chrome_paths.h" |
| 10 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 136 TEST_F(NaClTest, SrpcSockAddrTest) { | 136 TEST_F(NaClTest, SrpcSockAddrTest) { |
| 137 FilePath test_file(kSrpcSockAddrHtmlFileName); | 137 FilePath test_file(kSrpcSockAddrHtmlFileName); |
| 138 RunTest(test_file, action_max_timeout_ms()); | 138 RunTest(test_file, action_max_timeout_ms()); |
| 139 } | 139 } |
| 140 | 140 |
| 141 TEST_F(NaClTest, SrpcShmTest) { | 141 TEST_F(NaClTest, SrpcShmTest) { |
| 142 FilePath test_file(kSrpcShmHtmlFileName); | 142 FilePath test_file(kSrpcShmHtmlFileName); |
| 143 RunTest(test_file, action_max_timeout_ms()); | 143 RunTest(test_file, action_max_timeout_ms()); |
| 144 } | 144 } |
| 145 | 145 |
| 146 TEST_F(NaClTest, SrpcPluginTest) { | 146 TEST_F(NaClTest, FLAKY_SrpcPluginTest) { |
|
Paweł Hajdan Jr.
2010/06/24 06:24:05
Please make sure a bug is filed with failure logs
| |
| 147 FilePath test_file(kSrpcPluginHtmlFileName); | 147 FilePath test_file(kSrpcPluginHtmlFileName); |
| 148 RunTest(test_file, action_max_timeout_ms()); | 148 RunTest(test_file, action_max_timeout_ms()); |
| 149 } | 149 } |
| 150 | 150 |
| 151 TEST_F(NaClTest, SrpcNrdXferTest) { | 151 TEST_F(NaClTest, SrpcNrdXferTest) { |
| 152 FilePath test_file(kSrpcNrdXferHtmlFileName); | 152 FilePath test_file(kSrpcNrdXferHtmlFileName); |
| 153 RunTest(test_file, action_max_timeout_ms()); | 153 RunTest(test_file, action_max_timeout_ms()); |
| 154 } | 154 } |
| 155 | 155 |
| 156 TEST_F(NaClTest, NpapiHwTest) { | 156 TEST_F(NaClTest, NpapiHwTest) { |
| 157 FilePath test_file(kNpapiHwHtmlFileName); | 157 FilePath test_file(kNpapiHwHtmlFileName); |
| 158 RunTest(test_file, action_max_timeout_ms()); | 158 RunTest(test_file, action_max_timeout_ms()); |
| 159 } | 159 } |
| OLD | NEW |