aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2018-09-06 15:33:36 +0200
committerRickard Green <[email protected]>2018-09-06 15:33:36 +0200
commit2917410f3e2baa7fdd9c276c91040b42e6d08ec1 (patch)
tree8327de963ae97a7e5254dacd5bdcfb9e1ea3f4d7 /lib/stdlib/test
parentea908f25c2e6f98c2bed977c8fd4fa459315520b (diff)
parentd4d6ed058530e5db26782dea4a0fd62c2d1098c4 (diff)
downloadotp-2917410f3e2baa7fdd9c276c91040b42e6d08ec1.tar.gz
otp-2917410f3e2baa7fdd9c276c91040b42e6d08ec1.tar.bz2
otp-2917410f3e2baa7fdd9c276c91040b42e6d08ec1.zip
Merge branch 'maint'
* maint: Update PCRE from version 8.41 to version 8.42
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r--lib/stdlib/test/re_SUITE_data/testoutput216
-rw-r--r--lib/stdlib/test/re_SUITE_data/testoutput58
2 files changed, 24 insertions, 0 deletions
diff --git a/lib/stdlib/test/re_SUITE_data/testoutput2 b/lib/stdlib/test/re_SUITE_data/testoutput2
index 811bbefc84..61ed8d9d4e 100644
--- a/lib/stdlib/test/re_SUITE_data/testoutput2
+++ b/lib/stdlib/test/re_SUITE_data/testoutput2
@@ -14705,4 +14705,20 @@ No options
No first char
No need char
+"(?<=(a))\1?b"
+ ab
+ 0: b
+ 1: a
+ aaab
+ 0: ab
+ 1: a
+
+"(?=(a))\1?b"
+ ab
+ 0: ab
+ 1: a
+ aaab
+ 0: ab
+ 1: a
+
/-- End of testinput2 --/
diff --git a/lib/stdlib/test/re_SUITE_data/testoutput5 b/lib/stdlib/test/re_SUITE_data/testoutput5
index bab989ca7e..090e1e1c85 100644
--- a/lib/stdlib/test/re_SUITE_data/testoutput5
+++ b/lib/stdlib/test/re_SUITE_data/testoutput5
@@ -1942,4 +1942,12 @@ Need char = 'z'
0: \x{17f}
0+
+/\C[^\v]+\x80/8
+ [AΏBŀC]
+No match
+
+/\C[^\d]+\x80/8
+ [AΏBŀC]
+No match
+
/-- End of testinput5 --/