diff options
Diffstat (limited to 'libcxx/test/std')
-rw-r--r-- | libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp b/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp index f0a62794b33..4afc6b0efe8 100644 --- a/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp +++ b/libcxx/test/std/re/re.alg/re.alg.match/awk.pass.cpp @@ -16,6 +16,9 @@ // regex_constants::match_flag_type flags // = regex_constants::match_default); +// TODO: investigation needed +// XFAIL: linux-gnu + #include <regex> #include <cassert> #include "test_macros.h" @@ -25,7 +28,6 @@ int main() { -#if 0 { std::cmatch m; const char s[] = "a"; @@ -1388,5 +1390,4 @@ int main() assert(m.position(0) == 0); assert(m.str(0) == s); } -#endif } |