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

Side by Side Diff: content/browser/indexed_db/indexed_db_browsertest.cc

Issue 2370703004: Re-enable an IndexedDB test that used to crash on Android. (Closed)
Patch Set: Added a tiny fix to a comment in the re-enabled test. Created 4 years, 2 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 | content/test/data/indexeddb/cursor_prefetch.js » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 200
201 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) { 201 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) {
202 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html")); 202 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html"));
203 } 203 }
204 204
205 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTestIncognito) { 205 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTestIncognito) {
206 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html"), 206 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html"),
207 true /* incognito */); 207 true /* incognito */);
208 } 208 }
209 209
210 // crbug.com/513787 210 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorPrefetch) {
211 #if defined(ANDROID)
212 #define MAYBE_CursorPrefetch DISABLED_CursorPrefetch
213 #else
214 #define MAYBE_CursorPrefetch CursorPrefetch
215 #endif
216 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, MAYBE_CursorPrefetch) {
217 SimpleTest(GetTestUrl("indexeddb", "cursor_prefetch.html")); 211 SimpleTest(GetTestUrl("indexeddb", "cursor_prefetch.html"));
218 } 212 }
219 213
220 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, IndexTest) { 214 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, IndexTest) {
221 SimpleTest(GetTestUrl("indexeddb", "index_test.html")); 215 SimpleTest(GetTestUrl("indexeddb", "index_test.html"));
222 } 216 }
223 217
224 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) { 218 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) {
225 SimpleTest(GetTestUrl("indexeddb", "key_path_test.html")); 219 SimpleTest(GetTestUrl("indexeddb", "key_path_test.html"));
226 } 220 }
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 command_line->AppendSwitch(switches::kSingleProcess); 854 command_line->AppendSwitch(switches::kSingleProcess);
861 } 855 }
862 }; 856 };
863 857
864 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess, 858 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess,
865 RenderThreadShutdownTest) { 859 RenderThreadShutdownTest) {
866 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html")); 860 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html"));
867 } 861 }
868 862
869 } // namespace content 863 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/test/data/indexeddb/cursor_prefetch.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698