summaryrefslogtreecommitdiff
path: root/pcre_jit_test.c
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-02 08:18:24 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-02 08:18:24 +0000
commit5ea0f42e1ba61aff8c6290dcf321ed9bfdf26ac9 (patch)
tree250b80e8a258a6c5496cabf6fcf3976625daaf39 /pcre_jit_test.c
parentf16304072b2fb5a95aae43a59d9f3537ae0b0052 (diff)
downloadpcre-5ea0f42e1ba61aff8c6290dcf321ed9bfdf26ac9.tar.gz
PowerPC 64 fixes in the JIT.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1051 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_jit_test.c')
-rw-r--r--pcre_jit_test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/pcre_jit_test.c b/pcre_jit_test.c
index 34904b4..830e3e1 100644
--- a/pcre_jit_test.c
+++ b/pcre_jit_test.c
@@ -1105,7 +1105,7 @@ static int regression_tests(void)
if (utf8 == utf16 && !(current->start_offset & F_FORCECONV)) {
/* All results must be the same. */
if (return_value8_1 != return_value8_2 || return_value8_1 != return_value16_1 || return_value8_1 != return_value16_2) {
- printf("\n8 and 16 bit: Return value differs(%d:%d:%d:%d): [%d] '%s' @ '%s'\n",
+ printf("\n8 and 16 bit: Return value differs(J8:%d,I8:%d,J16:%d,I16%d): [%d] '%s' @ '%s'\n",
return_value8_1, return_value8_2, return_value16_1, return_value16_2,
total, current->pattern, current->input);
is_successful = 0;
@@ -1130,7 +1130,7 @@ static int regression_tests(void)
for (i = 0; i < return_value8_1; ++i)
if (ovector8_1[i] != ovector8_2[i] || ovector8_1[i] != ovector16_1[i] || ovector8_1[i] != ovector16_2[i]) {
- printf("\n8 and 16 bit: Ovector[%d] value differs(%d:%d:%d:%d): [%d] '%s' @ '%s' \n",
+ printf("\n8 and 16 bit: Ovector[%d] value differs(J8:%d,I8:%d,J16:%d,I16%d): [%d] '%s' @ '%s' \n",
i, ovector8_1[i], ovector8_2[i], ovector16_1[i], ovector16_2[i],
total, current->pattern, current->input);
is_successful = 0;
@@ -1141,7 +1141,7 @@ static int regression_tests(void)
/* Only the 8 bit and 16 bit results must be equal. */
#ifdef SUPPORT_PCRE8
if (return_value8_1 != return_value8_2) {
- printf("\n8 bit: Return value differs(%d:%d): [%d] '%s' @ '%s'\n",
+ printf("\n8 bit: Return value differs(J8:%d,I8:%d): [%d] '%s' @ '%s'\n",
return_value8_1, return_value8_2, total, current->pattern, current->input);
is_successful = 0;
} else if (return_value8_1 >= 0 || return_value8_1 == PCRE_ERROR_PARTIAL) {
@@ -1152,7 +1152,7 @@ static int regression_tests(void)
for (i = 0; i < return_value8_1; ++i)
if (ovector8_1[i] != ovector8_2[i]) {
- printf("\n8 bit: Ovector[%d] value differs(%d:%d): [%d] '%s' @ '%s'\n",
+ printf("\n8 bit: Ovector[%d] value differs(J8:%d,I8:%d): [%d] '%s' @ '%s'\n",
i, ovector8_1[i], ovector8_2[i], total, current->pattern, current->input);
is_successful = 0;
}
@@ -1161,7 +1161,7 @@ static int regression_tests(void)
#ifdef SUPPORT_PCRE16
if (return_value16_1 != return_value16_2) {
- printf("\n16 bit: Return value differs(%d:%d): [%d] '%s' @ '%s'\n",
+ printf("\n16 bit: Return value differs(J16:%d,I16:%d): [%d] '%s' @ '%s'\n",
return_value16_1, return_value16_2, total, current->pattern, current->input);
is_successful = 0;
} else if (return_value16_1 >= 0 || return_value16_1 == PCRE_ERROR_PARTIAL) {
@@ -1172,7 +1172,7 @@ static int regression_tests(void)
for (i = 0; i < return_value16_1; ++i)
if (ovector16_1[i] != ovector16_2[i]) {
- printf("\n16 bit: Ovector[%d] value differs(%d:%d): [%d] '%s' @ '%s'\n",
+ printf("\n16 bit: Ovector[%d] value differs(J16:%d,I16:%d): [%d] '%s' @ '%s'\n",
i, ovector16_1[i], ovector16_2[i], total, current->pattern, current->input);
is_successful = 0;
}