LWG Issue #2271: regex_traits::lookup_classname specification unclear. libc++ already does the right thing; just update the tests.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@202904 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -115,9 +115,9 @@ int main()
|
||||
test("xdigit", std::ctype_base::xdigit, true);
|
||||
test("Xdigit", std::ctype_base::xdigit, true);
|
||||
|
||||
test("dig", 0);
|
||||
test("", 0);
|
||||
test("digits", 0);
|
||||
test("dig", std::ctype_base::mask());
|
||||
test("", std::ctype_base::mask());
|
||||
test("digits", std::ctype_base::mask());
|
||||
|
||||
test(L"d", std::ctype_base::digit);
|
||||
test(L"D", std::ctype_base::digit);
|
||||
@@ -203,7 +203,7 @@ int main()
|
||||
test(L"xdigit", std::ctype_base::xdigit, true);
|
||||
test(L"Xdigit", std::ctype_base::xdigit, true);
|
||||
|
||||
test(L"dig", 0);
|
||||
test(L"", 0);
|
||||
test(L"digits", 0);
|
||||
test(L"dig", std::ctype_base::mask());
|
||||
test(L"", std::ctype_base::mask());
|
||||
test(L"digits", std::ctype_base::mask());
|
||||
}
|
||||
|
Reference in New Issue
Block a user