diff options
author | Asiri Rathnayake <asiri.rathnayake@arm.com> | 2016-10-06 11:15:41 +0000 |
---|---|---|
committer | Asiri Rathnayake <asiri.rathnayake@arm.com> | 2016-10-06 11:15:41 +0000 |
commit | 08eb2148ffe8b627c83a3a14ac24d1dd4e418690 (patch) | |
tree | 15364e3a90bdffc0ab52373efa8a5849dd997296 /libcxx/test/std/re/re.regex/re.regex.construct | |
parent | 47faf3be89e303ee8ca4029e8b1cf4f5ea969217 (diff) | |
download | bcm5719-llvm-08eb2148ffe8b627c83a3a14ac24d1dd4e418690.tar.gz bcm5719-llvm-08eb2148ffe8b627c83a3a14ac24d1dd4e418690.zip |
[libcxx] Recover no-exceptions XFAILs - I
First batch of changes to get some of these XFAILs working in the
no-exceptions libc++ variant.
Changed some XFAILs to UNSUPPORTED where the test is all about exception
handling. In other cases, used the test macros TEST_THROW and
TEST_HAS_NO_EXCEPTIONS to conditionally exclude those parts of the test
that concerns exception handling behaviour.
Reviewers: EricWF, mclow.lists
Differential revision: https://reviews.llvm.org/D24562
llvm-svn: 283441
Diffstat (limited to 'libcxx/test/std/re/re.regex/re.regex.construct')
-rw-r--r-- | libcxx/test/std/re/re.regex/re.regex.construct/bad_escape.pass.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/re/re.regex/re.regex.construct/bad_repeat.pass.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/re/re.regex/re.regex.construct/bad_escape.pass.cpp b/libcxx/test/std/re/re.regex/re.regex.construct/bad_escape.pass.cpp index 3c7e9f5e33c..93b21ec9e9f 100644 --- a/libcxx/test/std/re/re.regex/re.regex.construct/bad_escape.pass.cpp +++ b/libcxx/test/std/re/re.regex/re.regex.construct/bad_escape.pass.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -// XFAIL: libcpp-no-exceptions +// UNSUPPORTED: libcpp-no-exceptions // <regex> // template <class charT, class traits = regex_traits<charT>> class basic_regex; diff --git a/libcxx/test/std/re/re.regex/re.regex.construct/bad_repeat.pass.cpp b/libcxx/test/std/re/re.regex/re.regex.construct/bad_repeat.pass.cpp index 0692a59542f..0f30a8b2082 100644 --- a/libcxx/test/std/re/re.regex/re.regex.construct/bad_repeat.pass.cpp +++ b/libcxx/test/std/re/re.regex/re.regex.construct/bad_repeat.pass.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -// XFAIL: libcpp-no-exceptions +// UNSUPPORTED: libcpp-no-exceptions // <regex> // template <class charT, class traits = regex_traits<charT>> class basic_regex; |