Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2022-01-19 14:07:13 +0300
committerMartin Storsjö <martin@martin.st>2022-03-09 11:12:55 +0300
commitabe46776f33d11f9d6d7162d905d760aebafc590 (patch)
treeb014f001e38e1c5726d2ead37eaa20d783fc2a52 /libcxx
parent8a0fa4db39d862b99eb5d440a211c5c0228e13ce (diff)
[libcxx] [test] Fix the classic_table test on Windows
On Windows, constants like F::alpha and F::print are bitmasks consisting of multiple bits (e.g. F::alpha consisting of both the bits F::upper and F::lower). In such a case, we can't check that all the bits from all the expected constants are set. Instead, check that (p[i] & mask) != 0 returns the expected value. Differential Revision: https://reviews.llvm.org/D120802
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp66
1 files changed, 38 insertions, 28 deletions
diff --git a/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp b/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp
index 8f8e02c2b2b5..7f85dee329a6 100644
--- a/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp
+++ b/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp
@@ -12,8 +12,6 @@
// static const mask* classic_table() throw();
-// XFAIL: LIBCXX-WINDOWS-FIXME
-
#include <locale>
#include <cassert>
@@ -27,36 +25,48 @@ int main(int, char**)
typedef F::mask mask;
const mask *p = F::classic_table();
- const mask defined = F::space | F::print | F::cntrl | F::upper | F::lower
- | F::alpha | F::digit | F::punct | F::xdigit | F::blank;
for ( size_t i = 0; i < 128; ++i ) // values above 128 are not consistent
{
- mask set = 0;
-
- if ( i < 32 || i > 126 ) set |= F::cntrl;
- if ( i >= 32 && i <= 126 ) set |= F::print;
-
- if (( i >= 9 && i <= 13) || i == 32 ) set |= F::space;
- if ( i == 9 || i == 32 ) set |= F::blank;
-
- if ( i >= 'A' && i <= 'Z' ) set |= F::alpha;
- if ( i >= 'a' && i <= 'z' ) set |= F::alpha;
- if ( i >= 'A' && i <= 'Z' ) set |= F::upper;
- if ( i >= 'a' && i <= 'z' ) set |= F::lower;
-
- if ( i >= '0' && i <= '9' ) set |= F::digit;
- if ( i >= '0' && i <= '9' ) set |= F::xdigit;
- if ( i >= 'A' && i <= 'F' ) set |= F::xdigit;
- if ( i >= 'a' && i <= 'f' ) set |= F::xdigit;
-
- if ( i >= 33 && i <= 47 ) set |= F::punct; // ' ' .. '/'
- if ( i >= 58 && i <= 64 ) set |= F::punct; // ':' .. '@'
- if ( i >= 91 && i <= 96 ) set |= F::punct; // '[' .. '`'
- if ( i >= 123 && i <= 126 ) set |= F::punct; // '{' .. '~' }
- assert(( p[i] & set) == set); // all the right bits set
- assert(((p[i] & ~set) & defined) == 0); // no extra ones
+ bool expect_cntrl = (i < 32 || 126 < i);
+ bool expect_print = (32 <= i && i <= 126);
+
+ bool expect_space = (9 <= i && i <= 13) || (i == ' ');
+#if defined(_MSVC_STL_VERSION)
+ // MS STL includes the _SPACE bit in F::blank
+ bool expect_blank = (9 <= i && i <= 13) || (i == ' ');
+#elif defined(_WIN32)
+ // The _BLANK bit isn't set for '\t' on Windows
+ bool expect_blank = (i == ' ');
+#else
+ bool expect_blank = (i == '\t' || i == ' ');
+#endif
+
+ bool expect_upper = ('A' <= i && i <= 'Z');
+ bool expect_lower = ('a' <= i && i <= 'z');
+ bool expect_alpha = expect_upper || expect_lower;
+
+ bool expect_digit = ('0' <= i && i <= '9');
+ bool expect_xdigit = ('A' <= i && i <= 'F')
+ || ('a' <= i && i <= 'f')
+ || expect_digit;
+
+ bool expect_punct = (33 <= i && i <= 47) // ' ' .. '/'
+ || (58 <= i && i <= 64) // ':' .. '@'
+ || (91 <= i && i <= 96) // '[' .. '`'
+ || (123 <= i && i <= 126); // '{' .. '~'
+
+ assert(bool(p[i] & F::cntrl) == expect_cntrl);
+ assert(bool(p[i] & F::print) == expect_print);
+ assert(bool(p[i] & F::space) == expect_space);
+ assert(bool(p[i] & F::blank) == expect_blank);
+ assert(bool(p[i] & F::lower) == expect_lower);
+ assert(bool(p[i] & F::upper) == expect_upper);
+ assert(bool(p[i] & F::alpha) == expect_alpha);
+ assert(bool(p[i] & F::digit) == expect_digit);
+ assert(bool(p[i] & F::xdigit) == expect_xdigit);
+ assert(bool(p[i] & F::punct) == expect_punct);
}