[libcxx-commits] [PATCH] D120802: [libcxx] [test] Fix the classic_table test on Windows
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 9 00:18:18 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGabe46776f33d: [libcxx] [test] Fix the classic_table test on Windows (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120802/new/
https://reviews.llvm.org/D120802
Files:
libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp
Index: libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp
===================================================================
--- libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp
+++ 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 @@
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);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D120802.414023.patch
Type: text/x-patch
Size: 3810 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220309/9c257f1b/attachment.bin>
More information about the libcxx-commits
mailing list