Implement full support for non-pointer pointers in custom allocators for string. This completes the custom pointer support for the entire library.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@185167 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
#include <cassert>
|
||||
|
||||
#include "../../input_iterator.h"
|
||||
#include "../../min_allocator.h"
|
||||
|
||||
template <class S, class It>
|
||||
void
|
||||
@@ -28,6 +29,7 @@ test(S s, It first, It last, S expected)
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
const char* s = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
||||
test(S(), s, s, S());
|
||||
@@ -84,4 +86,65 @@ int main()
|
||||
S("ABCDEFGHIJ"));
|
||||
test(S("12345678901234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s+52),
|
||||
S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
}
|
||||
#if __cplusplus >= 201103L
|
||||
{
|
||||
typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
|
||||
const char* s = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
||||
test(S(), s, s, S());
|
||||
test(S(), s, s+1, S("A"));
|
||||
test(S(), s, s+10, S("ABCDEFGHIJ"));
|
||||
test(S(), s, s+52, S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
test(S("12345"), s, s, S());
|
||||
test(S("12345"), s, s+1, S("A"));
|
||||
test(S("12345"), s, s+10, S("ABCDEFGHIJ"));
|
||||
test(S("12345"), s, s+52, S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
test(S("1234567890"), s, s, S());
|
||||
test(S("1234567890"), s, s+1, S("A"));
|
||||
test(S("1234567890"), s, s+10, S("ABCDEFGHIJ"));
|
||||
test(S("1234567890"), s, s+52, S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
test(S("12345678901234567890"), s, s, S());
|
||||
test(S("12345678901234567890"), s, s+1, S("A"));
|
||||
test(S("12345678901234567890"), s, s+10, S("ABCDEFGHIJ"));
|
||||
test(S("12345678901234567890"), s, s+52,
|
||||
S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
test(S(), input_iterator<const char*>(s), input_iterator<const char*>(s), S());
|
||||
test(S(), input_iterator<const char*>(s), input_iterator<const char*>(s+1), S("A"));
|
||||
test(S(), input_iterator<const char*>(s), input_iterator<const char*>(s+10),
|
||||
S("ABCDEFGHIJ"));
|
||||
test(S(), input_iterator<const char*>(s), input_iterator<const char*>(s+52),
|
||||
S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
test(S("12345"), input_iterator<const char*>(s), input_iterator<const char*>(s),
|
||||
S());
|
||||
test(S("12345"), input_iterator<const char*>(s), input_iterator<const char*>(s+1),
|
||||
S("A"));
|
||||
test(S("12345"), input_iterator<const char*>(s), input_iterator<const char*>(s+10),
|
||||
S("ABCDEFGHIJ"));
|
||||
test(S("12345"), input_iterator<const char*>(s), input_iterator<const char*>(s+52),
|
||||
S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
test(S("1234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s),
|
||||
S());
|
||||
test(S("1234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s+1),
|
||||
S("A"));
|
||||
test(S("1234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s+10),
|
||||
S("ABCDEFGHIJ"));
|
||||
test(S("1234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s+52),
|
||||
S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
|
||||
test(S("12345678901234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s),
|
||||
S());
|
||||
test(S("12345678901234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s+1),
|
||||
S("A"));
|
||||
test(S("12345678901234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s+10),
|
||||
S("ABCDEFGHIJ"));
|
||||
test(S("12345678901234567890"), input_iterator<const char*>(s), input_iterator<const char*>(s+52),
|
||||
S("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user