| 188 |
{ PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANY, 0, "^-", "a--\xe2\x80\xa8--" }, |
{ PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANY, 0, "^-", "a--\xe2\x80\xa8--" }, |
| 189 |
{ PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANY, 0, "^-", "a--\xc2\x85--" }, |
{ PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANY, 0, "^-", "a--\xc2\x85--" }, |
| 190 |
{ 0, 0, "ab$", "ab" }, |
{ 0, 0, "ab$", "ab" }, |
| 191 |
{ 0, 0 | F_NOMATCH, "ab$", "ab\r\n" }, |
{ 0, 0 | F_NOMATCH, "ab$", "abab\n\n" }, |
| 192 |
|
{ PCRE_DOLLAR_ENDONLY, 0 | F_NOMATCH, "ab$", "abab\r\n" }, |
| 193 |
{ PCRE_MULTILINE | PCRE_NEWLINE_CRLF, 0, "a$", "\r\raa\n\naa\r\naa" }, |
{ PCRE_MULTILINE | PCRE_NEWLINE_CRLF, 0, "a$", "\r\raa\n\naa\r\naa" }, |
| 194 |
{ PCRE_MULTILINE | PCRE_NEWLINE_ANY, 0, "a$", "aaa" }, |
{ PCRE_MULTILINE | PCRE_NEWLINE_ANY, 0, "a$", "aaa" }, |
| 195 |
{ PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANYCRLF, 0, "#$", "#\xc2\x85###\r#" }, |
{ PCRE_MULTILINE | PCRE_UTF8 | PCRE_NEWLINE_ANYCRLF, 0, "#$", "#\xc2\x85###\r#" }, |
| 675 |
static unsigned char *tables_copy; |
static unsigned char *tables_copy; |
| 676 |
const char *errorptr; |
const char *errorptr; |
| 677 |
int erroroffset; |
int erroroffset; |
| 678 |
const unsigned char *default_tables; |
unsigned char *default_tables; |
| 679 |
#ifdef SUPPORT_PCRE8 |
#ifdef SUPPORT_PCRE8 |
| 680 |
pcre *regex; |
pcre *regex; |
| 681 |
char null_str[1] = { 0 }; |
char null_str[1] = { 0 }; |
| 861 |
{ |
{ |
| 862 |
struct regression_test_case *current = regression_test_cases; |
struct regression_test_case *current = regression_test_cases; |
| 863 |
const char *error; |
const char *error; |
| 864 |
const char *cpu_info; |
char *cpu_info; |
| 865 |
int i, err_offs; |
int i, err_offs; |
| 866 |
int is_successful, is_ascii_pattern, is_ascii_input; |
int is_successful, is_ascii_pattern, is_ascii_input; |
| 867 |
int total = 0; |
int total = 0; |