Don't hardcode the Czech locale name.

We already have a definition for the Czech locale name in
platform_support.h. Use this one instead.

While there, respect the common format of the tests. For most other
tests it's the case that test_iterators.h is placed right underneath the
other #includes (without an empty line). platform_support.h is included
after an empty line.


git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@232383 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ed Schouten
2015-03-16 15:09:15 +00:00
parent 84b6c1f402
commit eda3fcaaed
11 changed files with 44 additions and 30 deletions

View File

@@ -25,6 +25,8 @@
#include <cassert>
#include "test_iterators.h"
#include "platform_support.h" // locale name macros
template <class char_type>
void
test(const char_type* A, const std::basic_string<char_type>& expected)
@@ -108,7 +110,7 @@ int main()
test("tild", std::string(""));
test("ch", std::string(""));
std::locale::global(std::locale("cs_CZ.ISO8859-2"));
std::locale::global(std::locale(LOCALE_cs_CZ_ISO8859_2));
test("ch", std::string("ch"));
std::locale::global(std::locale("C"));
@@ -184,7 +186,7 @@ int main()
test(L"tild", std::wstring(L""));
test(L"ch", std::wstring(L""));
std::locale::global(std::locale("cs_CZ.ISO8859-2"));
std::locale::global(std::locale(LOCALE_cs_CZ_ISO8859_2));
test(L"ch", std::wstring(L"ch"));
std::locale::global(std::locale("C"));
}

View File

@@ -21,6 +21,8 @@
#include <cassert>
#include "test_iterators.h"
#include "platform_support.h" // locale name macros
int main()
{
{
@@ -29,7 +31,7 @@ int main()
const char B[] = "B";
typedef forward_iterator<const char*> F;
assert(t.transform(F(a), F(a+1)) > t.transform(F(B), F(B+1)));
t.imbue(std::locale("cs_CZ.ISO8859-2"));
t.imbue(std::locale(LOCALE_cs_CZ_ISO8859_2));
assert(t.transform(F(a), F(a+1)) < t.transform(F(B), F(B+1)));
}
{
@@ -38,7 +40,7 @@ int main()
const wchar_t B[] = L"B";
typedef forward_iterator<const wchar_t*> F;
assert(t.transform(F(a), F(a+1)) > t.transform(F(B), F(B+1)));
t.imbue(std::locale("cs_CZ.ISO8859-2"));
t.imbue(std::locale(LOCALE_cs_CZ_ISO8859_2));
assert(t.transform(F(a), F(a+1)) < t.transform(F(B), F(B+1)));
}
}

View File

@@ -22,6 +22,8 @@
#include <cassert>
#include "test_iterators.h"
#include "platform_support.h" // locale name macros
int main()
{
{
@@ -31,7 +33,7 @@ int main()
typedef forward_iterator<const char*> F;
assert(t.transform_primary(F(A), F(A+1)) !=
t.transform_primary(F(Aacute), F(Aacute+1)));
t.imbue(std::locale("cs_CZ.ISO8859-2"));
t.imbue(std::locale(LOCALE_cs_CZ_ISO8859_2));
assert(t.transform_primary(F(A), F(A+1)) ==
t.transform_primary(F(Aacute), F(Aacute+1)));
}
@@ -42,7 +44,7 @@ int main()
typedef forward_iterator<const wchar_t*> F;
assert(t.transform_primary(F(A), F(A+1)) !=
t.transform_primary(F(Aacute), F(Aacute+1)));
t.imbue(std::locale("cs_CZ.ISO8859-2"));
t.imbue(std::locale(LOCALE_cs_CZ_ISO8859_2));
assert(t.transform_primary(F(A), F(A+1)) ==
t.transform_primary(F(Aacute), F(Aacute+1)));
}