Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/test/test_timeouts.h" | 7 #include "base/test/test_timeouts.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/chrome_switches.h" | 9 #include "chrome/common/chrome_switches.h" |
| 10 #include "chrome/test/automation/tab_proxy.h" | 10 #include "chrome/test/automation/tab_proxy.h" |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 152 TEST_PPAPI_IN_PROCESS(Broker) | 152 TEST_PPAPI_IN_PROCESS(Broker) |
| 153 TEST_PPAPI_OUT_OF_PROCESS(Broker) | 153 TEST_PPAPI_OUT_OF_PROCESS(Broker) |
| 154 | 154 |
| 155 TEST_PPAPI_IN_PROCESS(Core) | 155 TEST_PPAPI_IN_PROCESS(Core) |
| 156 TEST_PPAPI_OUT_OF_PROCESS(Core) | 156 TEST_PPAPI_OUT_OF_PROCESS(Core) |
| 157 | 157 |
| 158 TEST_PPAPI_IN_PROCESS(CursorControl) | 158 TEST_PPAPI_IN_PROCESS(CursorControl) |
| 159 TEST_PPAPI_OUT_OF_PROCESS(CursorControl) | 159 TEST_PPAPI_OUT_OF_PROCESS(CursorControl) |
| 160 | 160 |
| 161 TEST_PPAPI_IN_PROCESS(Instance) | 161 TEST_PPAPI_IN_PROCESS(Instance) |
| 162 TEST_PPAPI_OUT_OF_PROCESS(Instance) | 162 // http://crbug.com/91729 |
| 163 TEST_PPAPI_OUT_OF_PROCESS(FAILS_Instance) | |
|
M-A Ruel
2011/08/10 23:52:13
If it fails, mark it as DISABLED_. There is no poi
| |
| 163 | 164 |
| 164 TEST_PPAPI_IN_PROCESS(Graphics2D) | 165 TEST_PPAPI_IN_PROCESS(Graphics2D) |
| 165 // Disabled because it times out: http://crbug.com/89961 | 166 // Disabled because it times out: http://crbug.com/89961 |
| 166 //TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) | 167 //TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) |
| 167 | 168 |
| 168 TEST_PPAPI_IN_PROCESS(ImageData) | 169 TEST_PPAPI_IN_PROCESS(ImageData) |
| 169 TEST_PPAPI_OUT_OF_PROCESS(ImageData) | 170 TEST_PPAPI_OUT_OF_PROCESS(ImageData) |
| 170 | 171 |
| 171 TEST_PPAPI_IN_PROCESS(Buffer) | 172 TEST_PPAPI_IN_PROCESS(Buffer) |
| 172 TEST_PPAPI_OUT_OF_PROCESS(Buffer) | 173 TEST_PPAPI_OUT_OF_PROCESS(Buffer) |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 260 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { | 261 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { |
| 261 RunTestViaHTTP("Transport"); | 262 RunTestViaHTTP("Transport"); |
| 262 } | 263 } |
| 263 #endif // ENABLE_P2P_APIS | 264 #endif // ENABLE_P2P_APIS |
| 264 | 265 |
| 265 TEST_PPAPI_IN_PROCESS(UMA) | 266 TEST_PPAPI_IN_PROCESS(UMA) |
| 266 // There is no proxy. | 267 // There is no proxy. |
| 267 TEST_F(OutOfProcessPPAPITest, FAILS_UMA) { | 268 TEST_F(OutOfProcessPPAPITest, FAILS_UMA) { |
| 268 RunTest("UMA"); | 269 RunTest("UMA"); |
| 269 } | 270 } |
| OLD | NEW |