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

Unified Diff: components/copresence/handlers/audio/audio_directive_list_unittest.cc

Issue 453203002: Fixing memory leak in TimedMap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merging to HEAD Created 6 years, 4 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
Index: components/copresence/handlers/audio/audio_directive_list_unittest.cc
diff --git a/components/copresence/handlers/audio/audio_directive_list_unittest.cc b/components/copresence/handlers/audio/audio_directive_list_unittest.cc
index f746b0d5621cc14d2cd60ee0940b4e0d7921b74b..ba7ff660a6e6212be156c16c5717b4a6487ac65a 100644
--- a/components/copresence/handlers/audio/audio_directive_list_unittest.cc
+++ b/components/copresence/handlers/audio/audio_directive_list_unittest.cc
@@ -36,8 +36,9 @@ class AudioDirectiveListTest : public testing::Test {
scoped_ptr<AudioDirectiveList> directive_list_;
};
-// TODO(rkc): Find and fix the memory leak here.
+// TODO(rkc): Fix errors in these tests. See crbug/402578.
#define MAYBE_Basic DISABLED_Basic
+#define MAYBE_OutOfOrderAndMultiple DISABLED_OutOfOrderAndMultiple
TEST_F(AudioDirectiveListTest, MAYBE_Basic) {
const base::TimeDelta kZeroTtl = base::TimeDelta::FromMilliseconds(0);
@@ -57,9 +58,6 @@ TEST_F(AudioDirectiveListTest, MAYBE_Basic) {
EXPECT_EQ("op_id3", directive_list_->GetNextReceive()->op_id);
}
-// TODO(rkc): Find out why this is breaking on bots and fix it.
-#define MAYBE_OutOfOrderAndMultiple DISABLED_OutOfOrderAndMultiple
-
TEST_F(AudioDirectiveListTest, MAYBE_OutOfOrderAndMultiple) {
const base::TimeDelta kZeroTtl = base::TimeDelta::FromMilliseconds(0);
const base::TimeDelta kLargeTtl = base::TimeDelta::FromSeconds(0x7331);

Powered by Google App Engine
This is Rietveld 408576698