diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 21:13:18 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 21:13:18 +0000 |
commit | ee93d54c7ae18cdb3414e053f92e287a34479670 (patch) | |
tree | 8cd50a4ce2d93c54ac573b69755c2c9bbd3180e3 /chrome/worker | |
parent | 9165d5c2b237a46a11e990e11697b422f21fb8bf (diff) | |
download | chromium_src-ee93d54c7ae18cdb3414e053f92e287a34479670.zip chromium_src-ee93d54c7ae18cdb3414e053f92e287a34479670.tar.gz chromium_src-ee93d54c7ae18cdb3414e053f92e287a34479670.tar.bz2 |
Enabling shared worker tests for Linux/Mac. Windows is blocked on b27636.
BUG=26899
Review URL: http://codereview.chromium.org/385099
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31944 0039d316-1c4b-4281-b951-d872f2087c98
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", |