diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-24 06:36:58 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-24 06:36:58 +0000 |
commit | 8445640d01d91669819883ac480d8e60f2d6cfa5 (patch) | |
tree | 5c5a6d8ea7fcbc589a71d709a21e328e2856b9ae /chrome/worker | |
parent | b60f230e9ad2f54ce1411a436d32591f3d893ae8 (diff) | |
download | chromium_src-8445640d01d91669819883ac480d8e60f2d6cfa5.zip chromium_src-8445640d01d91669819883ac480d8e60f2d6cfa5.tar.gz chromium_src-8445640d01d91669819883ac480d8e60f2d6cfa5.tar.bz2 |
WorkerFastLayoutTests works fine on the Linux try bots, but fails on the Linux build bots.
Disabling for now.
TBR=levin
BUG=22898
TEST=none
Review URL: http://codereview.chromium.org/218022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27051 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-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[] = { |