diff options
-rw-r--r-- | chrome/worker/worker_uitest.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc index 1888116..f436cfe 100644 --- a/chrome/worker/worker_uitest.cc +++ b/chrome/worker/worker_uitest.cc @@ -35,6 +35,9 @@ TEST_F(WorkerTest, MultipleWorkers) { RunTest(L"multi_worker.html"); } +// WorkerFastLayoutTests works on the linux try servers, but fails on the +// build bots. +#if !defined(OS_LINUX) TEST_F(WorkerTest, WorkerFastLayoutTests) { static const char* kLayoutTestFiles[] = { "stress-js-execution.html", @@ -89,6 +92,7 @@ TEST_F(WorkerTest, WorkerFastLayoutTests) { for (size_t i = 0; i < arraysize(kLayoutTestFiles); ++i) RunLayoutTest(kLayoutTestFiles[i], false); } +#endif // !defined(OS_LINUX) TEST_F(WorkerTest, WorkerHttpLayoutTests) { static const char* kLayoutTestFiles[] = { |