-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libc++] Improve the tests for vector::erase (#116265)
In particular, test everything with both a normal and a min_allocator, add tests for a few corner cases and add tests with types that are trivially relocatable. Also add tests that count the number of assignments performed by vector::erase, since that is mandated by the Standard. This patch is a preparation for optimizing vector::erase.
- Loading branch information
Showing
6 changed files
with
370 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
libcxx/test/std/containers/sequences/vector/vector.modifiers/common.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef TEST_STD_CONTAINERS_SEQUENCES_VECTOR_VECTOR_MODIFIERS_COMMON_H | ||
#define TEST_STD_CONTAINERS_SEQUENCES_VECTOR_VECTOR_MODIFIERS_COMMON_H | ||
|
||
#include "test_macros.h" | ||
|
||
#include <type_traits> // for __libcpp_is_trivially_relocatable | ||
|
||
#ifndef TEST_HAS_NO_EXCEPTIONS | ||
struct Throws { | ||
Throws() : v_(0) {} | ||
Throws(int v) : v_(v) {} | ||
Throws(const Throws& rhs) : v_(rhs.v_) { | ||
if (sThrows) | ||
throw 1; | ||
} | ||
Throws(Throws&& rhs) : v_(rhs.v_) { | ||
if (sThrows) | ||
throw 1; | ||
} | ||
Throws& operator=(const Throws& rhs) { | ||
v_ = rhs.v_; | ||
return *this; | ||
} | ||
Throws& operator=(Throws&& rhs) { | ||
v_ = rhs.v_; | ||
return *this; | ||
} | ||
int v_; | ||
static bool sThrows; | ||
}; | ||
|
||
bool Throws::sThrows = false; | ||
#endif | ||
|
||
struct Tracker { | ||
int copy_assignments = 0; | ||
int move_assignments = 0; | ||
}; | ||
|
||
struct TrackedAssignment { | ||
Tracker* tracker_; | ||
TEST_CONSTEXPR_CXX14 explicit TrackedAssignment(Tracker* tracker) : tracker_(tracker) {} | ||
|
||
TrackedAssignment(TrackedAssignment const&) = default; | ||
TrackedAssignment(TrackedAssignment&&) = default; | ||
|
||
TEST_CONSTEXPR_CXX14 TrackedAssignment& operator=(TrackedAssignment const&) { | ||
tracker_->copy_assignments++; | ||
return *this; | ||
} | ||
TEST_CONSTEXPR_CXX14 TrackedAssignment& operator=(TrackedAssignment&&) { | ||
tracker_->move_assignments++; | ||
return *this; | ||
} | ||
}; | ||
|
||
struct NonTriviallyRelocatable { | ||
int value_; | ||
TEST_CONSTEXPR NonTriviallyRelocatable() : value_(0) {} | ||
TEST_CONSTEXPR explicit NonTriviallyRelocatable(int v) : value_(v) {} | ||
TEST_CONSTEXPR NonTriviallyRelocatable(NonTriviallyRelocatable const& other) : value_(other.value_) {} | ||
TEST_CONSTEXPR NonTriviallyRelocatable(NonTriviallyRelocatable&& other) : value_(other.value_) {} | ||
TEST_CONSTEXPR_CXX14 NonTriviallyRelocatable& operator=(NonTriviallyRelocatable const& other) { | ||
value_ = other.value_; | ||
return *this; | ||
} | ||
TEST_CONSTEXPR_CXX14 NonTriviallyRelocatable& operator=(NonTriviallyRelocatable&& other) { | ||
value_ = other.value_; | ||
return *this; | ||
} | ||
|
||
TEST_CONSTEXPR_CXX14 friend bool operator==(NonTriviallyRelocatable const& a, NonTriviallyRelocatable const& b) { | ||
return a.value_ == b.value_; | ||
} | ||
}; | ||
LIBCPP_STATIC_ASSERT(!std::__libcpp_is_trivially_relocatable<NonTriviallyRelocatable>::value, ""); | ||
|
||
#endif // TEST_STD_CONTAINERS_SEQUENCES_VECTOR_VECTOR_MODIFIERS_COMMON_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.