diff options
author | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2013-05-01 16:02:12 +0000 |
---|---|---|
committer | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2013-05-01 16:02:12 +0000 |
commit | 636d368fb3e4ec634e65d8ff8f8864535ebaa081 (patch) | |
tree | a24a5863c1e049d58f1fe520012f5d29499d5b5f /testdata | |
parent | ff3c0c95487b638b28963248d110a531d7dc7872 (diff) | |
download | pcre-636d368fb3e4ec634e65d8ff8f8864535ebaa081.tar.gz |
Move some tests to the correct input file.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1318 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/testinput4 | 8 | ||||
-rw-r--r-- | testdata/testinput6 | 8 | ||||
-rw-r--r-- | testdata/testoutput4 | 12 | ||||
-rw-r--r-- | testdata/testoutput6 | 12 |
4 files changed, 20 insertions, 20 deletions
diff --git a/testdata/testinput4 b/testdata/testinput4 index 5d77ada..b9f1a72 100644 --- a/testdata/testinput4 +++ b/testdata/testinput4 @@ -695,14 +695,6 @@ 1234 123 -/^\p{Any}*\d{4}/8 - 1234 - 123 - -/^\X*\w{4}/8 - 1234 - 123 - /^[^b]*\w{4}/8 aaaa aaa diff --git a/testdata/testinput6 b/testdata/testinput6 index a4bfb3c..adbf621 100644 --- a/testdata/testinput6 +++ b/testdata/testinput6 @@ -1316,4 +1316,12 @@ /\x{017f}+/8i \x{0053}\x{0073}\x{017f} +/^\p{Any}*\d{4}/8 + 1234 + 123 + +/^\X*\w{4}/8 + 1234 + 123 + /-- End of testinput6 --/ diff --git a/testdata/testoutput4 b/testdata/testoutput4 index 0b8a306..6694111 100644 --- a/testdata/testoutput4 +++ b/testdata/testoutput4 @@ -1233,18 +1233,6 @@ MK: a\x{a3}b 123 No match -/^\p{Any}*\d{4}/8 - 1234 - 0: 1234 - 123 -No match - -/^\X*\w{4}/8 - 1234 - 0: 1234 - 123 -No match - /^[^b]*\w{4}/8 aaaa 0: aaaa diff --git a/testdata/testoutput6 b/testdata/testoutput6 index 0182746..b1d4579 100644 --- a/testdata/testoutput6 +++ b/testdata/testoutput6 @@ -2134,4 +2134,16 @@ No match \x{0053}\x{0073}\x{017f} 0: Ss\x{17f} +/^\p{Any}*\d{4}/8 + 1234 + 0: 1234 + 123 +No match + +/^\X*\w{4}/8 + 1234 + 0: 1234 + 123 +No match + /-- End of testinput6 --/ |