Move test into test/std subdirectory.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@224658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static void assign(char_type& c1, const char_type& c2);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
wchar_t c = L'\0';
|
||||
std::char_traits<wchar_t>::assign(c, L'a');
|
||||
assert(c == L'a');
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static char_type* assign(char_type* s, size_t n, char_type a);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
wchar_t s1[] = {1, 2, 3};
|
||||
wchar_t s2[3] = {0};
|
||||
assert(std::char_traits<wchar_t>::assign(s2, 3, wchar_t(5)) == s2);
|
||||
assert(s2[0] == wchar_t(5));
|
||||
assert(s2[1] == wchar_t(5));
|
||||
assert(s2[2] == wchar_t(5));
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static int compare(const char_type* s1, const char_type* s2, size_t n);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
assert(std::char_traits<wchar_t>::compare(L"", L"", 0) == 0);
|
||||
|
||||
assert(std::char_traits<wchar_t>::compare(L"1", L"1", 1) == 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"1", L"2", 1) < 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"2", L"1", 1) > 0);
|
||||
|
||||
assert(std::char_traits<wchar_t>::compare(L"12", L"12", 2) == 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"12", L"13", 2) < 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"12", L"22", 2) < 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"13", L"12", 2) > 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"22", L"12", 2) > 0);
|
||||
|
||||
assert(std::char_traits<wchar_t>::compare(L"123", L"123", 3) == 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"123", L"223", 3) < 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"123", L"133", 3) < 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"123", L"124", 3) < 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"223", L"123", 3) > 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"133", L"123", 3) > 0);
|
||||
assert(std::char_traits<wchar_t>::compare(L"124", L"123", 3) > 0);
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static char_type* copy(char_type* s1, const char_type* s2, size_t n);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
wchar_t s1[] = {1, 2, 3};
|
||||
wchar_t s2[3] = {0};
|
||||
assert(std::char_traits<wchar_t>::copy(s2, s1, 3) == s2);
|
||||
assert(s2[0] == wchar_t(1));
|
||||
assert(s2[1] == wchar_t(2));
|
||||
assert(s2[2] == wchar_t(3));
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static constexpr int_type eof();
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
assert(std::char_traits<wchar_t>::eof() == WEOF);
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static constexpr bool eq(char_type c1, char_type c2);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
wchar_t c = L'\0';
|
||||
assert(std::char_traits<wchar_t>::eq(L'a', L'a'));
|
||||
assert(!std::char_traits<wchar_t>::eq(L'a', L'A'));
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static constexpr bool eq_int_type(int_type c1, int_type c2);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
assert( std::char_traits<wchar_t>::eq_int_type(L'a', L'a'));
|
||||
assert(!std::char_traits<wchar_t>::eq_int_type(L'a', L'A'));
|
||||
assert(!std::char_traits<wchar_t>::eq_int_type(std::char_traits<wchar_t>::eof(), L'A'));
|
||||
assert( std::char_traits<wchar_t>::eq_int_type(std::char_traits<wchar_t>::eof(),
|
||||
std::char_traits<wchar_t>::eof()));
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static const char_type* find(const char_type* s, size_t n, const char_type& a);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
wchar_t s1[] = {1, 2, 3};
|
||||
assert(std::char_traits<wchar_t>::find(s1, 3, wchar_t(1)) == s1);
|
||||
assert(std::char_traits<wchar_t>::find(s1, 3, wchar_t(2)) == s1+1);
|
||||
assert(std::char_traits<wchar_t>::find(s1, 3, wchar_t(3)) == s1+2);
|
||||
assert(std::char_traits<wchar_t>::find(s1, 3, wchar_t(4)) == 0);
|
||||
assert(std::char_traits<wchar_t>::find(s1, 3, wchar_t(0)) == 0);
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static size_t length(const char_type* s);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
assert(std::char_traits<wchar_t>::length(L"") == 0);
|
||||
assert(std::char_traits<wchar_t>::length(L"a") == 1);
|
||||
assert(std::char_traits<wchar_t>::length(L"aa") == 2);
|
||||
assert(std::char_traits<wchar_t>::length(L"aaa") == 3);
|
||||
assert(std::char_traits<wchar_t>::length(L"aaaa") == 4);
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static constexpr bool lt(char_type c1, char_type c2);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
wchar_t c = L'\0';
|
||||
assert(!std::char_traits<wchar_t>::lt(L'a', L'a'));
|
||||
assert( std::char_traits<wchar_t>::lt(L'A', L'a'));
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static char_type* move(char_type* s1, const char_type* s2, size_t n);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
wchar_t s1[] = {1, 2, 3};
|
||||
assert(std::char_traits<wchar_t>::move(s1, s1+1, 2) == s1);
|
||||
assert(s1[0] == wchar_t(2));
|
||||
assert(s1[1] == wchar_t(3));
|
||||
assert(s1[2] == wchar_t(3));
|
||||
s1[2] = wchar_t(0);
|
||||
assert(std::char_traits<wchar_t>::move(s1+1, s1, 2) == s1+1);
|
||||
assert(s1[0] == wchar_t(2));
|
||||
assert(s1[1] == wchar_t(2));
|
||||
assert(s1[2] == wchar_t(3));
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static constexpr int_type not_eof(int_type c);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
assert(std::char_traits<wchar_t>::not_eof(L'a') == L'a');
|
||||
assert(std::char_traits<wchar_t>::not_eof(L'A') == L'A');
|
||||
assert(std::char_traits<wchar_t>::not_eof(0) == 0);
|
||||
assert(std::char_traits<wchar_t>::not_eof(std::char_traits<wchar_t>::eof()) !=
|
||||
std::char_traits<wchar_t>::eof());
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static constexpr char_type to_char_type(int_type c);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
assert(std::char_traits<wchar_t>::to_char_type(L'a') == L'a');
|
||||
assert(std::char_traits<wchar_t>::to_char_type(L'A') == L'A');
|
||||
assert(std::char_traits<wchar_t>::to_char_type(0) == 0);
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// static constexpr int_type to_int_type(char_type c);
|
||||
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
assert(std::char_traits<wchar_t>::to_int_type(L'a') == L'a');
|
||||
assert(std::char_traits<wchar_t>::to_int_type(L'A') == L'A');
|
||||
assert(std::char_traits<wchar_t>::to_int_type(0) == 0);
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <string>
|
||||
|
||||
// template<> struct char_traits<wchar_t>
|
||||
|
||||
// typedef wchar_t char_type;
|
||||
// typedef int int_type;
|
||||
// typedef streamoff off_type;
|
||||
// typedef streampos pos_type;
|
||||
// typedef mbstate_t state_type;
|
||||
|
||||
#include <string>
|
||||
#include <type_traits>
|
||||
|
||||
int main()
|
||||
{
|
||||
static_assert((std::is_same<std::char_traits<wchar_t>::char_type, wchar_t>::value), "");
|
||||
static_assert((std::is_same<std::char_traits<wchar_t>::int_type, std::wint_t>::value), "");
|
||||
static_assert((std::is_same<std::char_traits<wchar_t>::off_type, std::streamoff>::value), "");
|
||||
static_assert((std::is_same<std::char_traits<wchar_t>::pos_type, std::wstreampos>::value), "");
|
||||
static_assert((std::is_same<std::char_traits<wchar_t>::state_type, std::mbstate_t>::value), "");
|
||||
}
|
||||
Reference in New Issue
Block a user