diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-22 21:21:18 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-22 21:21:18 +0000 |
commit | eff35223788d56b9d024d15749f637cc681ae67b (patch) | |
tree | 2c058d6767d239ed5d0ebaeef0d9bfda9e32823e /chrome/worker | |
parent | df18b5cf26cb1b38dc6a82c4647c1e90c40aea3c (diff) | |
download | chromium_src-eff35223788d56b9d024d15749f637cc681ae67b.zip chromium_src-eff35223788d56b9d024d15749f637cc681ae67b.tar.gz chromium_src-eff35223788d56b9d024d15749f637cc681ae67b.tar.bz2 |
Re-enabling worker fast tests (doing a more surgical disabling of just a single test).
BUG=22780
Review URL: http://codereview.chromium.org/315018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29821 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r-- | chrome/worker/worker_uitest.cc | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc index b517564..ff098b7 100644 --- a/chrome/worker/worker_uitest.cc +++ b/chrome/worker/worker_uitest.cc @@ -58,16 +58,16 @@ TEST_F(WorkerTest, MultipleWorkers) { RunTest(L"multi_worker.html"); } -TEST_F(WorkerTest, DISABLED_WorkerFastLayoutTests) { +#if defined(OS_LINUX) +#define WorkerFastLayoutTests DISABLED_WorkerFastLayoutTests +#endif + +TEST_F(WorkerTest, WorkerFastLayoutTests) { static const char* kLayoutTestFiles[] = { "stress-js-execution.html", "use-machine-stack.html", "worker-call.html", - // Disabled because cloning ports are too slow in Chromium to meet the - // thresholds in this test. - // http://code.google.com/p/chromium/issues/detail?id=22780 - // "worker-cloneport.html", - + "worker-cloneport.html", "worker-close.html", "worker-constructor.html", "worker-context-gc.html", @@ -87,7 +87,9 @@ TEST_F(WorkerTest, DISABLED_WorkerFastLayoutTests) { "worker-replace-self.html", "worker-script-error.html", "worker-terminate.html", - "worker-timeout.html" + // clearInterval() sometimes lets the timer continue to fire + // http://code.google.com/p/chromium/issues/detail?id=25548 + // "worker-timeout.html" }; FilePath fast_test_dir; |