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_path.h" | 5 #include "base/file_path.h" |
6 #include "base/string_util.h" | 6 #include "base/string_util.h" |
7 #include "base/test/test_timeouts.h" | 7 #include "base/test/test_timeouts.h" |
8 #include "base/threading/platform_thread.h" | 8 #include "base/threading/platform_thread.h" |
9 #include "chrome/app/chrome_command_ids.h" | 9 #include "chrome/app/chrome_command_ids.h" |
10 #include "chrome/test/automation/automation_proxy.h" | 10 #include "chrome/test/automation/automation_proxy.h" |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 // Flaky, http://crbug.com/71518. | 324 // Flaky, http://crbug.com/71518. |
325 TEST_F(WorkerTest, FLAKY_WorkerMapGc) { | 325 TEST_F(WorkerTest, FLAKY_WorkerMapGc) { |
326 RunWorkerFastLayoutTest("wrapper-map-gc.html"); | 326 RunWorkerFastLayoutTest("wrapper-map-gc.html"); |
327 } | 327 } |
328 | 328 |
329 // http://crbug.com/101996 (started flaking with WebKit roll 98537:98582). | 329 // http://crbug.com/101996 (started flaking with WebKit roll 98537:98582). |
330 TEST_F(WorkerTest, FLAKY_WorkerMessagePort) { | 330 TEST_F(WorkerTest, FLAKY_WorkerMessagePort) { |
331 RunWorkerFastLayoutTest("worker-messageport.html"); | 331 RunWorkerFastLayoutTest("worker-messageport.html"); |
332 } | 332 } |
333 | 333 |
334 #if defined(OS_WIN) || defined(OS_LINUX) | |
335 // http://crbug.com/101996 (started flaking with WebKit roll 98537:98582). | 334 // http://crbug.com/101996 (started flaking with WebKit roll 98537:98582). |
336 #define WorkerMessagePortGC FLAKY_WorkerMessagePortGC | 335 TEST_F(WorkerTest, FLAKY_WorkerMessagePortGC) { |
337 #endif | |
338 TEST_F(WorkerTest, WorkerMessagePortGC) { | |
339 RunWorkerFastLayoutTest("worker-messageport-gc.html"); | 336 RunWorkerFastLayoutTest("worker-messageport-gc.html"); |
340 } | 337 } |
341 | 338 |
342 // http://crbug.com/101996 (started flaking with WebKit roll 98537:98582). | 339 // http://crbug.com/101996 (started flaking with WebKit roll 98537:98582). |
343 TEST_F(WorkerTest, FLAKY_WorkerMultiPort) { | 340 TEST_F(WorkerTest, FLAKY_WorkerMultiPort) { |
344 RunWorkerFastLayoutTest("worker-multi-port.html"); | 341 RunWorkerFastLayoutTest("worker-multi-port.html"); |
345 } | 342 } |
346 | 343 |
347 // Flaky, http://crbug.com/76426. | 344 // Flaky, http://crbug.com/76426. |
348 TEST_F(WorkerTest, FLAKY_WorkerNavigator) { | 345 TEST_F(WorkerTest, FLAKY_WorkerNavigator) { |
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
888 } | 885 } |
889 | 886 |
890 #if defined(OS_LINUX) | 887 #if defined(OS_LINUX) |
891 // Fails on Linux due to an assert in WebKit's RNG. | 888 // Fails on Linux due to an assert in WebKit's RNG. |
892 // See http://webkit.org/b/55728. | 889 // See http://webkit.org/b/55728. |
893 #define FileWriterSyncWriteOverlapped DISABLED_FileWriterSyncWriteOverlapped | 890 #define FileWriterSyncWriteOverlapped DISABLED_FileWriterSyncWriteOverlapped |
894 #endif | 891 #endif |
895 TEST_F(WorkerFileSystemTest, FileWriterSyncWriteOverlapped) { | 892 TEST_F(WorkerFileSystemTest, FileWriterSyncWriteOverlapped) { |
896 RunWorkerFileSystemLayoutTest("file-writer-sync-write-overlapped.html"); | 893 RunWorkerFileSystemLayoutTest("file-writer-sync-write-overlapped.html"); |
897 } | 894 } |
OLD | NEW |