| 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 // Tests for the top plugins to catch regressions in our plugin host code, as | 5 // Tests for the top plugins to catch regressions in our plugin host code, as |
| 6 // well as in the out of process code. Currently this tests: | 6 // well as in the out of process code. Currently this tests: |
| 7 // Flash | 7 // Flash |
| 8 // Real | 8 // Real |
| 9 // QuickTime | 9 // QuickTime |
| 10 // Windows Media Player | 10 // Windows Media Player |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 // Disabled - http://crbug.com/44662 | 203 // Disabled - http://crbug.com/44662 |
| 204 TEST_F(PluginTest, DISABLED_MediaPlayerNew) { | 204 TEST_F(PluginTest, DISABLED_MediaPlayerNew) { |
| 205 TestPlugin("wmp_new.html", action_max_timeout_ms(), false); | 205 TestPlugin("wmp_new.html", action_max_timeout_ms(), false); |
| 206 } | 206 } |
| 207 | 207 |
| 208 // http://crbug.com/4809 | 208 // http://crbug.com/4809 |
| 209 TEST_F(PluginTest, DISABLED_MediaPlayerOld) { | 209 TEST_F(PluginTest, DISABLED_MediaPlayerOld) { |
| 210 TestPlugin("wmp_old.html", action_max_timeout_ms(), false); | 210 TestPlugin("wmp_old.html", action_max_timeout_ms(), false); |
| 211 } | 211 } |
| 212 | 212 |
| 213 #if defined(NDEBUG) | 213 // Disabled - http://crbug.com/44673 |
| 214 #define Real DISABLED_Real | 214 TEST_F(PluginTest, DISABLED_Real) { |
| 215 #endif | |
| 216 // Disabled on Release bots - http://crbug.com/44673 | |
| 217 TEST_F(PluginTest, Real) { | |
| 218 TestPlugin("real.html", action_max_timeout_ms(), false); | 215 TestPlugin("real.html", action_max_timeout_ms(), false); |
| 219 } | 216 } |
| 220 | 217 |
| 221 TEST_F(PluginTest, FlashOctetStream) { | 218 TEST_F(PluginTest, FlashOctetStream) { |
| 222 TestPlugin("flash-octet-stream.html", action_max_timeout_ms(), false); | 219 TestPlugin("flash-octet-stream.html", action_max_timeout_ms(), false); |
| 223 } | 220 } |
| 224 | 221 |
| 225 #if defined(OS_WIN) | 222 #if defined(OS_WIN) |
| 226 // http://crbug.com/53926 | 223 // http://crbug.com/53926 |
| 227 TEST_F(PluginTest, FLAKY_FlashLayoutWhilePainting) { | 224 TEST_F(PluginTest, FLAKY_FlashLayoutWhilePainting) { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 TEST_F(PluginInstallerDownloadTest, PluginInstallerDownloadPathTest) { | 345 TEST_F(PluginInstallerDownloadTest, PluginInstallerDownloadPathTest) { |
| 349 MessageLoop loop(MessageLoop::TYPE_IO); | 346 MessageLoop loop(MessageLoop::TYPE_IO); |
| 350 Start(); | 347 Start(); |
| 351 loop.Run(); | 348 loop.Run(); |
| 352 | 349 |
| 353 EXPECT_TRUE(success()); | 350 EXPECT_TRUE(success()); |
| 354 EXPECT_TRUE(initial_download_path().BaseName().value() == | 351 EXPECT_TRUE(initial_download_path().BaseName().value() == |
| 355 final_download_path().BaseName().value()); | 352 final_download_path().BaseName().value()); |
| 356 } | 353 } |
| 357 #endif // defined(OS_WIN) | 354 #endif // defined(OS_WIN) |
| OLD | NEW |