diff options
author | dslomov@chromium.org <dslomov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-03 02:22:38 +0000 |
---|---|---|
committer | dslomov@chromium.org <dslomov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-03 02:22:38 +0000 |
commit | 572a73afa65f7c0cf097a66037bffa76a701b568 (patch) | |
tree | c489a8125a2af2881ca1d7fbf2b09d34da455b46 /content/worker | |
parent | 529e549d9b039cef5fcee48b77049a2aa512bb74 (diff) | |
download | chromium_src-572a73afa65f7c0cf097a66037bffa76a701b568.zip chromium_src-572a73afa65f7c0cf097a66037bffa76a701b568.tar.gz chromium_src-572a73afa65f7c0cf097a66037bffa76a701b568.tar.bz2 |
Unflaking shared worker tests
Review URL: https://chromiumcodereview.appspot.com/9317069
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker')
-rw-r--r-- | content/worker/test/worker_uitest.cc | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/content/worker/test/worker_uitest.cc b/content/worker/test/worker_uitest.cc index 12f98ca..2255376 100644 --- a/content/worker/test/worker_uitest.cc +++ b/content/worker/test/worker_uitest.cc @@ -280,66 +280,63 @@ TEST_F(WorkerTest, FLAKY_WorkerMultiPort) { // // SharedWorkerFastLayoutTests // -// http://crbug.com/27636 - incorrect URL_MISMATCH exceptions sometimes get -// generated on the windows try bots. FLAKY on Win. -// http://crbug.com/28445 - flakiness on mac -TEST_F(WorkerTest, FLAKY_SharedWorkerFastConstructor) { +TEST_F(WorkerTest, SharedWorkerFastConstructor) { RunWorkerFastLayoutTest("shared-worker-constructor.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastContextGC) { +TEST_F(WorkerTest, SharedWorkerFastContextGC) { RunWorkerFastLayoutTest("shared-worker-context-gc.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastEventListener) { +TEST_F(WorkerTest, SharedWorkerFastEventListener) { RunWorkerFastLayoutTest("shared-worker-event-listener.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastException) { +TEST_F(WorkerTest, SharedWorkerFastException) { RunWorkerFastLayoutTest("shared-worker-exception.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastGC) { +TEST_F(WorkerTest, SharedWorkerFastGC) { RunWorkerFastLayoutTest("shared-worker-gc.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastInIframe) { +TEST_F(WorkerTest, SharedWorkerFastInIframe) { RunWorkerFastLayoutTest("shared-worker-in-iframe.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastLoadError) { +TEST_F(WorkerTest, SharedWorkerFastLoadError) { RunWorkerFastLayoutTest("shared-worker-load-error.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastLocation) { +TEST_F(WorkerTest, SharedWorkerFastLocation) { RunWorkerFastLayoutTest("shared-worker-location.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastName) { +TEST_F(WorkerTest, SharedWorkerFastName) { RunWorkerFastLayoutTest("shared-worker-name.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastNavigator) { +TEST_F(WorkerTest, SharedWorkerFastNavigator) { RunWorkerFastLayoutTest("shared-worker-navigator.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastReplaceGlobalConstructor) { +TEST_F(WorkerTest, SharedWorkerFastReplaceGlobalConstructor) { RunWorkerFastLayoutTest("shared-worker-replace-global-constructor.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastReplaceSelf) { +TEST_F(WorkerTest, SharedWorkerFastReplaceSelf) { RunWorkerFastLayoutTest("shared-worker-replace-self.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastScriptError) { +TEST_F(WorkerTest, SharedWorkerFastScriptError) { RunWorkerFastLayoutTest("shared-worker-script-error.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastShared) { +TEST_F(WorkerTest, SharedWorkerFastShared) { RunWorkerFastLayoutTest("shared-worker-shared.html"); } -TEST_F(WorkerTest, FLAKY_SharedWorkerFastSimple) { +TEST_F(WorkerTest, SharedWorkerFastSimple) { RunWorkerFastLayoutTest("shared-worker-simple.html"); } |