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

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

Issue 1634253002: Disabling flaky IndexedDBBrowserTestSingleProcess.RenderThreadShutdownTest on linux_chromium_asan_r… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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) 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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 EXPECT_EQ(expected_title16, title_watcher.WaitAndGetTitle()); 841 EXPECT_EQ(expected_title16, title_watcher.WaitAndGetTitle());
842 } 842 }
843 843
844 class IndexedDBBrowserTestSingleProcess : public IndexedDBBrowserTest { 844 class IndexedDBBrowserTestSingleProcess : public IndexedDBBrowserTest {
845 public: 845 public:
846 void SetUpCommandLine(base::CommandLine* command_line) override { 846 void SetUpCommandLine(base::CommandLine* command_line) override {
847 command_line->AppendSwitch(switches::kSingleProcess); 847 command_line->AppendSwitch(switches::kSingleProcess);
848 } 848 }
849 }; 849 };
850 850
851 // Flaky on linux_chromium_asan_rel_ng: crbug.com/581448
852 #if defined(ADDRESS_SANITIZER)
853 #define MAYBE_RenderThreadShutdownTest DISABLED_RenderThreadShutdownTest
854 #else
855 #define MAYBE_RenderThreadShutdownTest RenderThreadShutdownTest
856 #endif
851 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess, 857 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess,
852 RenderThreadShutdownTest) { 858 MAYBE_RenderThreadShutdownTest) {
853 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html")); 859 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html"));
854 } 860 }
855 861
856 } // namespace content 862 } // namespace content
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