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

Unified Diff: extensions/renderer/mojo/stash_client_unittest.cc

Issue 1849303002: Disable some extensions_unittests on LSAN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ok - let's push it out to CQ... Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/renderer/api/serial/serial_api_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/mojo/stash_client_unittest.cc
diff --git a/extensions/renderer/mojo/stash_client_unittest.cc b/extensions/renderer/mojo/stash_client_unittest.cc
index cddd20d5b560d1830710b09683d9e3ec72e9d3ec..3f361cc253582fa76a47d6304bf5113c0dff6702 100644
--- a/extensions/renderer/mojo/stash_client_unittest.cc
+++ b/extensions/renderer/mojo/stash_client_unittest.cc
@@ -37,8 +37,14 @@ class StashClientTest : public ApiTestBase {
DISALLOW_COPY_AND_ASSIGN(StashClientTest);
};
+// https://crbug.com/599898
+#if defined(LEAK_SANITIZER)
+#define MAYBE_StashAndRestore DISABLED_StashAndRestore
+#else
+#define MAYBE_StashAndRestore StashAndRestore
+#endif
// Test that stashing and restoring work correctly.
-TEST_F(StashClientTest, StashAndRestore) {
+TEST_F(StashClientTest, MAYBE_StashAndRestore) {
ASSERT_NO_FATAL_FAILURE(RunTest("stash_client_unittest.js", "testStash"));
scoped_ptr<ModuleSystemTestEnvironment> restore_test_env(CreateEnvironment());
ApiTestEnvironment restore_environment(restore_test_env.get());
« no previous file with comments | « extensions/renderer/api/serial/serial_api_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698