diff options
Diffstat (limited to 'chrome/worker')
-rw-r--r-- | chrome/worker/worker_uitest.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc index 7b46995..5449cce 100644 --- a/chrome/worker/worker_uitest.cc +++ b/chrome/worker/worker_uitest.cc @@ -116,7 +116,13 @@ TEST_F(WorkerTest, WorkerFastLayoutTests) { RunLayoutTest(kLayoutTestFiles[i], false); } -TEST_F(WorkerTest, DISABLED_SharedWorkerFastLayoutTests) { +#if defined(OS_WIN) +// http://crbug.com/27636 - incorrect URL_MISMATCH exceptions sometimes get +// generated on the windows try bots. +#define SharedWorkerFastLayoutTests DISABLED_SharedWorkerFastLayoutTests +#endif + +TEST_F(WorkerTest, SharedWorkerFastLayoutTests) { static const char* kLayoutTestFiles[] = { "shared-worker-constructor.html", "shared-worker-context-gc.html", |