Also apply the same fix on glibc. This takes the test one step closer
to passing on glibc, but it still fails on the zh_CN test (which
requires a more involved fix in libc++ itself).
Details
Details
- Reviewers
Mordante ldionne - Group Reviewers
Restricted Project - Commits
- rG83c2aa467e22: [libcxx] [test] Fix locale.time.get.byname get_date and get_date_wide on Windows
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp | ||
---|---|---|
66 | Why didn't the test fail on Glibc previously? |
libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp | ||
---|---|---|
66 | It previously failed on Glibc, but it still does - see the edited comment further up in the file. Previously it said: // GLIBC Expects "10/06/2009" for fr_FR as opposed to "10.06.2009" // GLIBC also fails on the zh_CN test. // XFAIL: linux Now I've edited it to say // GLIBC fails on the zh_CN test. // XFAIL: linux (Fixing the zh_CN testcase on Glibc is a bigger issue, which requires fixes to the libc++ library implementation itself - I have a PoC of such a fix that I can send later.) |
Why didn't the test fail on Glibc previously?