aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/re_SUITE_data/testoutput1
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2019-06-26 11:02:39 +0200
committerRickard Green <[email protected]>2019-06-26 11:02:39 +0200
commit28b3f984e2f9926164efc8949301f45c6bb41b25 (patch)
tree669ae028729e2663d2c98325f804c2db7e3d5d3b /lib/stdlib/test/re_SUITE_data/testoutput1
parent7fe7fa3dde556b5b92522f8279d465bb52baf1f6 (diff)
downloadotp-28b3f984e2f9926164efc8949301f45c6bb41b25.tar.gz
otp-28b3f984e2f9926164efc8949301f45c6bb41b25.tar.bz2
otp-28b3f984e2f9926164efc8949301f45c6bb41b25.zip
Update internal PCRE to version 8.43
Diffstat (limited to 'lib/stdlib/test/re_SUITE_data/testoutput1')
-rw-r--r--lib/stdlib/test/re_SUITE_data/testoutput124
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/stdlib/test/re_SUITE_data/testoutput1 b/lib/stdlib/test/re_SUITE_data/testoutput1
index eff8ecc948..e6147e60b9 100644
--- a/lib/stdlib/test/re_SUITE_data/testoutput1
+++ b/lib/stdlib/test/re_SUITE_data/testoutput1
@@ -9446,4 +9446,28 @@ No match
>XXX<
0: X
+/ (?<word> \w+ )* \. /xi
+ pokus.
+ 0: pokus.
+ 1: pokus
+
+/(?(DEFINE) (?<word> \w+ ) ) (?&word)* \./xi
+ pokus.
+ 0: pokus.
+
+/(?(DEFINE) (?<word> \w+ ) ) ( (?&word)* ) \./xi
+ pokus.
+ 0: pokus.
+ 1: <unset>
+ 2: pokus
+
+/(?&word)* (?(DEFINE) (?<word> \w+ ) ) \./xi
+ pokus.
+ 0: pokus.
+
+/(?&word)* \. (?<word> \w+ )/xi
+ pokus.hokus
+ 0: pokus.hokus
+ 1: hokus
+
/-- End of testinput1 --/