Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: chrome/worker/worker_uitest.cc

Issue 2893017: Disable failing test from r52393 to green the tree. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/file_path.h" 5 #include "base/file_path.h"
6 #include "base/string_util.h" 6 #include "base/string_util.h"
7 #include "chrome/app/chrome_dll_resource.h" 7 #include "chrome/app/chrome_dll_resource.h"
8 #include "chrome/browser/worker_host/worker_service.h" 8 #include "chrome/browser/worker_host/worker_service.h"
9 #include "chrome/common/chrome_switches.h" 9 #include "chrome/common/chrome_switches.h"
10 #include "chrome/common/url_constants.h" 10 #include "chrome/common/url_constants.h"
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 FilePath(kSingleSharedWorkersFile)); 664 FilePath(kSingleSharedWorkersFile));
665 url2 = GURL(url2.spec() + StringPrintf("?id=%d", max_workers_per_tab)); 665 url2 = GURL(url2.spec() + StringPrintf("?id=%d", max_workers_per_tab));
666 ASSERT_TRUE(window->AppendTab(url2)); 666 ASSERT_TRUE(window->AppendTab(url2));
667 667
668 std::string value = WaitUntilCookieNonEmpty(tab.get(), url, 668 std::string value = WaitUntilCookieNonEmpty(tab.get(), url,
669 kTestCompleteCookie, action_max_timeout_ms()); 669 kTestCompleteCookie, action_max_timeout_ms());
670 ASSERT_STREQ(kTestCompleteSuccess, value.c_str()); 670 ASSERT_STREQ(kTestCompleteSuccess, value.c_str());
671 ASSERT_TRUE(WaitForProcessCountToBe(2, max_workers_per_tab+1)); 671 ASSERT_TRUE(WaitForProcessCountToBe(2, max_workers_per_tab+1));
672 } 672 }
673 673
674 TEST_F(WorkerTest, OpenDatabaseSyncInputs) { 674 // TODO(ojan): Started failing with r52393. WebKit merge 63272:63323.
675 TEST_F(WorkerTest, FAILS_OpenDatabaseSyncInputs) {
675 RunWorkerStorageLayoutTest("open-database-sync-inputs.html"); 676 RunWorkerStorageLayoutTest("open-database-sync-inputs.html");
676 } 677 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698