2014-10-26 19:00:19 +01:00
|
|
|
|
# This is a specialized test for checking, when PCRE2 is compiled with the
|
2015-06-13 18:10:14 +02:00
|
|
|
|
# EBCDIC option but in an ASCII environment, that newline, white space, and \c
|
2014-10-26 19:00:19 +01:00
|
|
|
|
# functionality is working. It catches cases where explicit values such as 0x0a
|
|
|
|
|
# have been used instead of names like CHAR_LF. Needless to say, it is not a
|
|
|
|
|
# genuine EBCDIC test! In patterns, alphabetic characters that follow a
|
|
|
|
|
# backslash must be in EBCDIC code. In data, NL, NEL, LF, ESC, and DEL must be
|
|
|
|
|
# in EBCDIC, but can of course be specified as escapes.
|
|
|
|
|
|
|
|
|
|
# Test default newline and variations
|
|
|
|
|
|
|
|
|
|
/^A/m
|
|
|
|
|
ABC
|
|
|
|
|
12\x15ABC
|
|
|
|
|
|
|
|
|
|
/^A/m,newline=any
|
|
|
|
|
12\x15ABC
|
|
|
|
|
12\x0dABC
|
|
|
|
|
12\x0d\x15ABC
|
|
|
|
|
12\x25ABC
|
|
|
|
|
|
|
|
|
|
/^A/m,newline=anycrlf
|
|
|
|
|
12\x15ABC
|
|
|
|
|
12\x0dABC
|
|
|
|
|
12\x0d\x15ABC
|
|
|
|
|
** Fail
|
|
|
|
|
12\x25ABC
|
|
|
|
|
|
|
|
|
|
# Test \h
|
|
|
|
|
|
|
|
|
|
/^A\<5C>/
|
|
|
|
|
A B
|
2015-06-19 18:41:22 +02:00
|
|
|
|
A\x41B
|
2014-10-26 19:00:19 +01:00
|
|
|
|
|
|
|
|
|
# Test \H
|
|
|
|
|
|
|
|
|
|
/^A\<5C>/
|
|
|
|
|
AB
|
2015-06-19 18:41:22 +02:00
|
|
|
|
A\x42B
|
2014-10-26 19:00:19 +01:00
|
|
|
|
** Fail
|
|
|
|
|
A B
|
2015-06-19 18:41:22 +02:00
|
|
|
|
A\x41B
|
2014-10-26 19:00:19 +01:00
|
|
|
|
|
|
|
|
|
# Test \R
|
|
|
|
|
|
|
|
|
|
/^A\<5C>/
|
|
|
|
|
A\x15B
|
|
|
|
|
A\x0dB
|
|
|
|
|
A\x25B
|
|
|
|
|
A\x0bB
|
|
|
|
|
A\x0cB
|
|
|
|
|
** Fail
|
|
|
|
|
A B
|
|
|
|
|
|
|
|
|
|
# Test \v
|
|
|
|
|
|
|
|
|
|
/^A\<5C>/
|
|
|
|
|
A\x15B
|
|
|
|
|
A\x0dB
|
|
|
|
|
A\x25B
|
|
|
|
|
A\x0bB
|
|
|
|
|
A\x0cB
|
|
|
|
|
** Fail
|
|
|
|
|
A B
|
|
|
|
|
|
|
|
|
|
# Test \V
|
|
|
|
|
|
|
|
|
|
/^A\<5C>/
|
|
|
|
|
A B
|
|
|
|
|
** Fail
|
|
|
|
|
A\x15B
|
|
|
|
|
A\x0dB
|
|
|
|
|
A\x25B
|
|
|
|
|
A\x0bB
|
|
|
|
|
A\x0cB
|
|
|
|
|
|
|
|
|
|
# For repeated items, use an atomic group so that the output is the same
|
|
|
|
|
# for DFA matching (otherwise it may show multiple matches).
|
|
|
|
|
|
|
|
|
|
# Test \h+
|
|
|
|
|
|
|
|
|
|
/^A(?>\<5C>+)/
|
|
|
|
|
A B
|
|
|
|
|
|
|
|
|
|
# Test \H+
|
|
|
|
|
|
|
|
|
|
/^A(?>\<5C>+)/
|
|
|
|
|
AB
|
|
|
|
|
** Fail
|
|
|
|
|
A B
|
|
|
|
|
|
|
|
|
|
# Test \R+
|
|
|
|
|
|
|
|
|
|
/^A(?>\<5C>+)/
|
|
|
|
|
A\x15B
|
|
|
|
|
A\x0dB
|
|
|
|
|
A\x25B
|
|
|
|
|
A\x0bB
|
|
|
|
|
A\x0cB
|
|
|
|
|
** Fail
|
|
|
|
|
A B
|
|
|
|
|
|
|
|
|
|
# Test \v+
|
|
|
|
|
|
|
|
|
|
/^A(?>\<5C>+)/
|
|
|
|
|
A\x15B
|
|
|
|
|
A\x0dB
|
|
|
|
|
A\x25B
|
|
|
|
|
A\x0bB
|
|
|
|
|
A\x0cB
|
|
|
|
|
** Fail
|
|
|
|
|
A B
|
|
|
|
|
|
|
|
|
|
# Test \V+
|
|
|
|
|
|
|
|
|
|
/^A(?>\<5C>+)/
|
|
|
|
|
A B
|
|
|
|
|
** Fail
|
|
|
|
|
A\x15B
|
|
|
|
|
A\x0dB
|
|
|
|
|
A\x25B
|
|
|
|
|
A\x0bB
|
|
|
|
|
A\x0cB
|
2015-06-13 18:10:14 +02:00
|
|
|
|
|
|
|
|
|
# Test \c functionality
|
|
|
|
|
|
|
|
|
|
/\<5C>@\<5C>A\<5C>b\<5C>C\<5C>d\<5C>E\<5C>f\<5C>G\<5C>h\<5C>I\<5C>J\<5C>K\<5C>l\<5C>m\<5C>N\<5C>O\<5C>p\<5C>q\<5C>r\<5C>S\<5C>T\<5C>u\<5C>V\<5C>W\<5C>X\<5C>y\<5C>Z/
|
|
|
|
|
\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f
|
|
|
|
|
|
|
|
|
|
/\<5C>[\<5C>\\<5C>]\<5C>^\<5C>_/
|
|
|
|
|
\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f
|
|
|
|
|
|
|
|
|
|
/\<5C>?/
|
|
|
|
|
A\xffB
|
|
|
|
|
|
|
|
|
|
/\<5C>&/
|
2014-10-26 19:00:19 +01:00
|
|
|
|
|
|
|
|
|
# End
|