aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2016-07-31 18:46:30 +0000
committerJonathan Wakely <jwakely@redhat.com>2016-07-31 18:46:30 +0000
commitede961ac0eca721fdd3e779e6c45a69d34708aa7 (patch)
treee8f7f656d6e358fcc337927b86340b041a240e4e
parent4f960314108b68aba65ea27e167986e834cee67e (diff)
Fix non-portable std::regex test and test more cases
* testsuite/28_regex/basic_regex/ctors/basic/raw_string.cc: Fix test to not rely on GNU extension (escaped normal characters in POSIX BRE). Enable tests for other strings which are now supported. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@238926 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/testsuite/28_regex/basic_regex/ctors/basic/raw_string.cc17
2 files changed, 17 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 9c3af44ee81..a878d1e2465 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2016-07-31 Jonathan Wakely <jwakely@redhat.com>
+ * testsuite/28_regex/basic_regex/ctors/basic/raw_string.cc: Fix
+ test to not rely on GNU extension (escaped normal characters in POSIX
+ BRE). Enable tests for other strings which are now supported.
+
* testsuite/20_util/pair/astuple/get_neg.cc: Use effective-target
c++11 instead of setting -std=gnu++14.
diff --git a/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/basic/raw_string.cc b/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/basic/raw_string.cc
index 5625653d7f9..758f216b0a9 100644
--- a/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/basic/raw_string.cc
+++ b/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/basic/raw_string.cc
@@ -1,4 +1,3 @@
-// { dg-options "-std=gnu++11" }
// 2012-08-20 Benjamin Kosnik <bkoz@redhat.com>
//
@@ -31,17 +30,27 @@ test01()
// raw string literals
- //string_type sre0(R"(\d{3}-\d{3}-\d{4})"); // expected fail
+ string_type sre0(R"(\d{3}-\d{3}-\d{4})");
- string_type sre1(R"( this\n and new : forms\n )");
+ string_type sre1(R"( this
+ and new : forms
+ )");
string_type sre2(R"([:num:]{3}-[:num:]{3}-[:num:]{4})");
// 1
- regex_type re(R"( this\n and new : forms\n )", std::regex::basic);
+ regex_type re0(R"(\d{3}-\d{3}-\d{4})", std::regex::ECMAScript);
+
+ regex_type re1(R"( this
+ and new : forms
+ )", std::regex::basic);
+
+ regex_type re2(R"([:num:]{3}-[:num:]{3}-[:num:]{4})", std::regex::basic);
// 2
+ regex_sanity_check(sre0, std::regex::ECMAScript);
regex_sanity_check(sre1);
+ regex_sanity_check(sre2);
}
int main()