We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a fix to make it "FAIL" when no error occurred.
FAIL
The following four fixes:
oniguruma/test/test_utf8.c
Line 67 in ab444e0
oniguruma/test/test_syntax.c
Line 68 in ab444e0
oniguruma/test/test_options.c
oniguruma/test/test_back.c
Please rewrite it as follows.
//Before if (r < ONIG_MISMATCH) {
if (r < ONIG_MISMATCH) {
//After if (r < ONIG_MISMATCH || error_no < ONIG_MISMATCH) {
if (r < ONIG_MISMATCH || error_no < ONIG_MISMATCH) {
This will change the results of the following tests:
Lines 1651 to 1652 in ab444e0
and
e("" , "" , -50000); e("a", "a", -50001); e("a", "b", -50002);
P.S. (*SKIP) worked fine. Thank you.
(*SKIP)
The text was updated successfully, but these errors were encountered:
ec9d8c8
No branches or pull requests
This is a fix to make it "
FAIL
" when no error occurred.The following four fixes:
oniguruma/test/test_utf8.c
Line 67 in ab444e0
oniguruma/test/test_syntax.c
Line 68 in ab444e0
oniguruma/test/test_options.c
Line 67 in ab444e0
oniguruma/test/test_back.c
Line 67 in ab444e0
Please rewrite it as follows.
//Before
if (r < ONIG_MISMATCH) {
//After
if (r < ONIG_MISMATCH || error_no < ONIG_MISMATCH) {
This will change the results of the following tests:
oniguruma/test/test_utf8.c
Lines 1651 to 1652 in ab444e0
and
P.S.
(*SKIP)
worked fine. Thank you.The text was updated successfully, but these errors were encountered: