diff options
author | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-24 19:32:40 +0000 |
---|---|---|
committer | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-24 19:32:40 +0000 |
commit | be1f2d01182f21de6133236e6a9cd2801d6a5a76 (patch) | |
tree | 71a2e785f7e6412977a49b6ffe097574c136d986 /chrome/worker | |
parent | 2331a49ecb27f38888bf4f60f24e054cbb8a8890 (diff) | |
download | chromium_src-be1f2d01182f21de6133236e6a9cd2801d6a5a76.zip chromium_src-be1f2d01182f21de6133236e6a9cd2801d6a5a76.tar.gz chromium_src-be1f2d01182f21de6133236e6a9cd2801d6a5a76.tar.bz2 |
Disable Worker*.WorkerFastLayoutTests for now.
BUG=22942
TEST=Buildbots are green.
TBR=dglazkov
Review URL: http://codereview.chromium.org/220034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27099 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r-- | chrome/worker/worker_uitest.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc index 03bfabe1..3431cba 100644 --- a/chrome/worker/worker_uitest.cc +++ b/chrome/worker/worker_uitest.cc @@ -35,10 +35,8 @@ 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) { +// This fails on all platforms. Disable it for now. See http://crbug.com/22942 +TEST_F(WorkerTest, DISABLED_WorkerFastLayoutTests) { static const char* kLayoutTestFiles[] = { "stress-js-execution.html", #if defined(OS_WIN) @@ -90,7 +88,6 @@ 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[] = { |