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:
@@ -18,6 +18,8 @@
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
|
||||
#include "../../min_allocator.h"
|
||||
|
||||
template <class S>
|
||||
void
|
||||
test(S s1, S s2)
|
||||
@@ -33,6 +35,7 @@ test(S s1, S s2)
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::string S;
|
||||
test(S(""), S(""));
|
||||
test(S(""), S("12345"));
|
||||
@@ -50,4 +53,26 @@ int main()
|
||||
test(S("abcdefghijklmnopqrst"), S("12345"));
|
||||
test(S("abcdefghijklmnopqrst"), S("1234567890"));
|
||||
test(S("abcdefghijklmnopqrst"), S("12345678901234567890"));
|
||||
}
|
||||
#if __cplusplus >= 201103L
|
||||
{
|
||||
typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
|
||||
test(S(""), S(""));
|
||||
test(S(""), S("12345"));
|
||||
test(S(""), S("1234567890"));
|
||||
test(S(""), S("12345678901234567890"));
|
||||
test(S("abcde"), S(""));
|
||||
test(S("abcde"), S("12345"));
|
||||
test(S("abcde"), S("1234567890"));
|
||||
test(S("abcde"), S("12345678901234567890"));
|
||||
test(S("abcdefghij"), S(""));
|
||||
test(S("abcdefghij"), S("12345"));
|
||||
test(S("abcdefghij"), S("1234567890"));
|
||||
test(S("abcdefghij"), S("12345678901234567890"));
|
||||
test(S("abcdefghijklmnopqrst"), S(""));
|
||||
test(S("abcdefghijklmnopqrst"), S("12345"));
|
||||
test(S("abcdefghijklmnopqrst"), S("1234567890"));
|
||||
test(S("abcdefghijklmnopqrst"), S("12345678901234567890"));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user