Merge "Fix linked_list::remove_if()"

This commit is contained in:
Dimitry Ivanov 2015-11-06 02:32:34 +00:00 committed by Gerrit Code Review
commit 004fead6bc
2 changed files with 22 additions and 0 deletions

View File

@ -127,6 +127,11 @@ class LinkedList {
} else {
p->next = next;
}
if (tail_ == e) {
tail_ = p;
}
Allocator::free(e);
e = next;
} else {

View File

@ -133,6 +133,23 @@ TEST(linked_list, remove_if_then_pop) {
ASSERT_TRUE(list.pop_front() == nullptr);
}
TEST(linked_list, remove_if_last_then_push_back) {
test_list_t list;
list.push_back("a");
list.push_back("b");
list.push_back("c");
list.push_back("d");
list.remove_if([](const char* c) {
return *c == 'c' || *c == 'd';
});
ASSERT_EQ("ab", test_list_to_string(list));
list.push_back("d");
ASSERT_EQ("abd", test_list_to_string(list));
}
TEST(linked_list, copy_to_array) {
test_list_t list;
const size_t max_size = 128;