~ubuntu-branches/ubuntu/trusty/pcre3/trusty

« back to all changes in this revision

Viewing changes to testdata/testinput20

  • Committer: Package Import Robot
  • Author(s): Mark Baker
  • Date: 2012-03-23 22:34:54 UTC
  • mfrom: (23.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20120323223454-grhqqolk8a7x1h24
Tags: 1:8.30-4
* Reluctantly using an epoch, as it seems the funny version number with
  extra dots causes problems
* Bumped standard version to 3.9.3. No changes needed
* Converted to use new source format / quilt
* Put back obsolete pcre_info() API that upstream have dropped (Closes:
  #665300, #665356)
* Don't include pcregrep binary in debug package

Thanks to Elimar Riesebieter for the conversion to the new source format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/-- These tests are for the handling of characters greater than 255 in 16-bit,
 
2
    non-UTF-16 mode. --/
 
3
 
 
4
/^\x{ffff}+/i
 
5
    \x{ffff}
 
6
 
 
7
/^\x{ffff}?/i
 
8
    \x{ffff}
 
9
 
 
10
/^\x{ffff}*/i
 
11
    \x{ffff}
 
12
 
 
13
/^\x{ffff}{3}/i
 
14
    \x{ffff}\x{ffff}\x{ffff}
 
15
 
 
16
/^\x{ffff}{0,3}/i
 
17
    \x{ffff}
 
18
 
 
19
/-- End of testinput20 --/