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

Side by Side Diff: chrome/browser/in_process_webkit/indexed_db_browsertest.cc

Issue 6375012: Disable IndexTest (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/command_line.h" 5 #include "base/command_line.h"
6 #include "base/file_path.h" 6 #include "base/file_path.h"
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/ref_counted.h" 8 #include "base/ref_counted.h"
9 #include "base/scoped_temp_dir.h" 9 #include "base/scoped_temp_dir.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 L"window.domAutomationController.send(getLog())", &js_result)); 45 L"window.domAutomationController.send(getLog())", &js_result));
46 FAIL() << "Failed: " << js_result; 46 FAIL() << "Failed: " << js_result;
47 } 47 }
48 } 48 }
49 }; 49 };
50 50
51 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) { 51 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) {
52 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("cursor_test.html")))); 52 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("cursor_test.html"))));
53 } 53 }
54 54
55 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, IndexTest) { 55 // http://code.google.com/p/chromium/issues/detail?id=70773
56 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, DISALBED_IndexTest) {
56 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("index_test.html")))); 57 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("index_test.html"))));
57 } 58 }
58 59
59 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) { 60 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) {
60 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("key_path_test.html")))); 61 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("key_path_test.html"))));
61 } 62 }
62 63
63 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, TransactionGetTest) { 64 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, TransactionGetTest) {
64 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("transaction_get_test.html")))); 65 SimpleTest(testUrl(FilePath(FILE_PATH_LITERAL("transaction_get_test.html"))));
65 } 66 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 // Make sure we wait until the destructor has run. 118 // Make sure we wait until the destructor has run.
118 scoped_refptr<ThreadTestHelper> helper( 119 scoped_refptr<ThreadTestHelper> helper(
119 new ThreadTestHelper(BrowserThread::WEBKIT)); 120 new ThreadTestHelper(BrowserThread::WEBKIT));
120 ASSERT_TRUE(helper->Run()); 121 ASSERT_TRUE(helper->Run());
121 122
122 // Because we specified https for scheme to be skipped the second file 123 // Because we specified https for scheme to be skipped the second file
123 // should survive and the first go into vanity. 124 // should survive and the first go into vanity.
124 ASSERT_FALSE(file_util::PathExists(temp_file_path_1)); 125 ASSERT_FALSE(file_util::PathExists(temp_file_path_1));
125 ASSERT_TRUE(file_util::PathExists(temp_file_path_2)); 126 ASSERT_TRUE(file_util::PathExists(temp_file_path_2));
126 } 127 }
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