summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2015-08-10 14:19:06 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2015-08-10 14:19:06 +0000
commitb35246ac4badf9c2a99b21b214998361babd7afb (patch)
treecf42e1604470932447b8e9879df012abe12f65f7 /testdata
parentaf3e8a7cb35c34366283fb6c81354a37045b251f (diff)
downloadpcre-b35246ac4badf9c2a99b21b214998361babd7afb.tar.gz
Add missing integer overflow checks.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1589 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput24
-rw-r--r--testdata/testoutput26
2 files changed, 10 insertions, 0 deletions
diff --git a/testdata/testinput2 b/testdata/testinput2
index 43e07fb..e79a7fd 100644
--- a/testdata/testinput2
+++ b/testdata/testinput2
@@ -4199,4 +4199,8 @@ backtracking verbs. --/
/0(?0)|(1)(*THEN)(*SKIP:0)(*FAIL)/
01
+/((?(R8000000000)))/
+
+/(?(8000000000/
+
/-- End of testinput2 --/
diff --git a/testdata/testoutput2 b/testdata/testoutput2
index f528f36..88950d7 100644
--- a/testdata/testoutput2
+++ b/testdata/testoutput2
@@ -14543,4 +14543,10 @@ Need char = '0'
01
No match
+/((?(R8000000000)))/
+Failed: number is too big at offset 16
+
+/(?(8000000000/
+Failed: number is too big at offset 13
+
/-- End of testinput2 --/