Guard libc++ specific c.__invariants() tests in LIBCPP_ASSERT macros
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@267947 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
#include "min_allocator.h"
|
||||
|
||||
template <class S>
|
||||
@@ -22,7 +23,7 @@ void
|
||||
test(S s1, const S& s2)
|
||||
{
|
||||
s1 = s2;
|
||||
assert(s1.__invariants());
|
||||
LIBCPP_ASSERT(s1.__invariants());
|
||||
assert(s1 == s2);
|
||||
assert(s1.capacity() >= s1.size());
|
||||
}
|
||||
@@ -47,7 +48,7 @@ int main()
|
||||
"1234567890123456789012345678901234567890123456789012345678901234567890"),
|
||||
S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
|
||||
}
|
||||
#if __cplusplus >= 201103L
|
||||
#if TEST_STD_VER >= 11
|
||||
{
|
||||
typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
|
||||
test(S(), S());
|
||||
|
||||
Reference in New Issue
Block a user