Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | put this test back to XFAIL, as it was before, since it is still leaking memory | Ferenc Kovacs | 2014-04-29 | 1 | -0/+2 |
| | |||||
* | tests still failing, so xfail for now until fixed | Stanislav Malyshev | 2014-01-29 | 2 | -2/+4 |
| | |||||
* | Merge branch 'PHP-5.4' into PHP-5.5 | Yasuo Ohgaki | 2014-01-29 | 5 | -14/+10 |
|\ | | | | | | | | | * PHP-5.4: Fixed zend.multibyte tests partially | ||||
| * | Fixed zend.multibyte tests partially | Yasuo Ohgaki | 2014-01-29 | 5 | -14/+10 |
| | | |||||
| * | XFAIL multibyte tests until they are fixed (bug 66582) | Stanislav Malyshev | 2014-01-26 | 7 | -0/+14 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2014-01-26 | 7 | -0/+14 |
|\ \ | | | | | | | | | | | | | * PHP-5.4: XFAIL multibyte tests until they are fixed (bug 66582) | ||||
| * | | XFAIL multibyte tests until they are fixed (bug 66582) | Stanislav Malyshev | 2014-01-26 | 7 | -0/+14 |
| |/ | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Yasuo Ohgaki | 2014-01-19 | 14 | -95/+22 |
|\ \ | |/ | | | | | | | * PHP-5.4: Enable zend.multibyte tests. Tipcal configuration works, but most tests fail. | ||||
| * | Enable zend.multibyte tests. Tipcal configuration works, but most tests fail. | Yasuo Ohgaki | 2014-01-19 | 14 | -95/+22 |
| | | |||||
| * | Bump year | Xinchen Hui | 2014-01-03 | 7 | -7/+7 |
| | | |||||
* | | Bump year | Xinchen Hui | 2014-01-03 | 7 | -7/+7 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Felipe Pena | 2013-10-20 | 4 | -4/+4 |
|\ \ | |/ | | | | | | | * PHP-5.4: - Fixed possible uninitialized scalar variable usage (spotted by Coverity) | ||||
| * | - Fixed possible uninitialized scalar variable usage (spotted by Coverity) | Felipe Pena | 2013-10-20 | 4 | -4/+4 |
| | | |||||
* | | Fix long-standing visual pain point: the misalignment of './configure help' ↵ | Christopher Jones | 2013-08-06 | 1 | -4/+4 |
| | | | | | | | | | | | | text. Whitespace changes and a couple of grammar fixes. | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2013-08-04 | 2 | -2/+2 |
|\ \ | |/ | | | | | | | | | | | | | * PHP-5.4: non living code related typo fixes Conflicts: Zend/zend_compile.c | ||||
| * | non living code related typo fixes | Veres Lajos | 2013-08-04 | 2 | -2/+2 |
| | | |||||
| * | MFH: fixed #65045: mb_convert_encoding breaks well-formed character. | Rui Hirokawa | 2013-07-31 | 5 | -202/+215 |
| | | |||||
| * | Merge branch 'pull-request/341' | Stanislav Malyshev | 2013-06-10 | 4 | -4/+4 |
| | | | | | | | | | | * pull-request/341: (23 commits) typofixes | ||||
* | | added test script for bug65045. | Rui Hirokawa | 2013-07-31 | 1 | -0/+29 |
| | | |||||
* | | MFH: fixed #65045: mb_convert_encoding breaks well-formed character. | Rui Hirokawa | 2013-07-31 | 4 | -202/+186 |
| | | |||||
* | | Merge branch 'pull-request/341' | Stanislav Malyshev | 2013-06-10 | 4 | -4/+4 |
| | | | | | | | | | | * pull-request/341: (23 commits) typofixes | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2013-05-09 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Missed SKIPIF | Xinchen Hui | 2013-05-09 | 1 | -0/+2 |
| | | |||||
* | | Fixed bug #64769 mbstring PHPTs crash on Windows x64 | Anatol Belski | 2013-05-08 | 2 | -1/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tricky business going there in oniguruma is saving a pointer in an int variable, passing that variable into a function and making it a pointer again. On 64bit windows casting a pointer to a 32 bit int will truncate that pointer. This kind of things won't work on Windows x64. [SNIPPET] unsigned long ul0[2], ul1, *ul2; ul0[0] = 42uL; ul0[0] = 24uL; ul1 = (unsigned long)ul0; ul2 = (unsigned long *)ul1; /* now it's broken, accessing ul2[0] will crash. */ [/SNIPPET] To make it portable, ULONG_PTR should be used in this case. In oniguruma this behaviour is to see at least in the following codepath: ext/mbstring/oniguruma/enc/unicode.c:10938 ext/mbstring/oniguruma/st.c:308 ext/mbstring/oniguruma/enc/unicode.c:10859 | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2013-02-16 | 1 | -2/+0 |
|\ \ | |/ | |||||
| * | Fix test failed after 0ea83ff8478d867ebf1603a43cd5d3432022cee7 | Xinchen Hui | 2013-02-16 | 1 | -2/+0 |
| | | |||||
| * | mb_split() can now handle empty matches like preg_split() does. | Moriyoshi Koizumi | 2013-02-10 | 3 | -40/+46 |
| | | |||||
| * | Happy New Year | Xinchen Hui | 2013-01-01 | 7 | -7/+7 |
| | | |||||
* | | mb_split() can now handle empty matches like preg_split() does. | Moriyoshi Koizumi | 2013-02-10 | 3 | -40/+46 |
| | | |||||
* | | Happy New Year | Xinchen Hui | 2013-01-01 | 7 | -7/+7 |
| | | |||||
* | | Merge branch 'PHP-5.4' | Xinchen Hui | 2012-11-07 | 4 | -0/+80 |
|\ \ | |/ | |||||
| * | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2012-11-07 | 4 | -0/+80 |
| |\ | |||||
| | * | Fixed bug #63447 (max_input_vars doesn't filter variables when ↵ | Xinchen Hui | 2012-11-07 | 4 | -0/+80 |
| | | | | | | | | | | | | mbstring.encoding_translation = On) | ||||
* | | | Merge branch 'PHP-5.4' | Xinchen Hui | 2012-10-10 | 1 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2012-10-10 | 1 | -0/+0 |
| |\ \ | | |/ | |||||
| | * | Remove executable permission on phpt | Xinchen Hui | 2012-10-10 | 1 | -0/+0 |
| | | | |||||
* | | | Merge branch 'PHP-5.4' | Xinchen Hui | 2012-10-09 | 8 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2012-10-09 | 8 | -0/+0 |
| |\ \ | | |/ | |||||
| | * | Fixed bug #63236 (Executable permission on various source files) | Xinchen Hui | 2012-10-09 | 8 | -0/+0 |
| | | | |||||
| | * | Fixed bug #61631 mbstring mail related tests fail | Anatoliy Belsky | 2012-04-10 | 8 | -0/+24 |
| | | | |||||
| * | | Allow null as a default value for length in mb_substr() and mb_strcut() | Lars Strojny | 2012-09-02 | 2 | -6/+12 |
| | | | |||||
| * | | Fixed bug #61631 mbstring mail related tests fail | Anatoliy Belsky | 2012-04-10 | 8 | -16/+16 |
| | | | |||||
* | | | Allow null as a default value for length in mb_substr() and mb_strcut() | Lars Strojny | 2012-09-02 | 2 | -4/+42 |
| | | | |||||
* | | | Fixed bug #61631 mbstring mail related tests fail | Anatoliy Belsky | 2012-04-10 | 8 | -16/+16 |
| | | | |||||
* | | | Merge branch 'PHP-5.4' | Xinchen Hui | 2012-03-22 | 1 | -2/+2 |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | * PHP-5.4: Fix test, and merge the modification from trunk Conflicts: ext/mbstring/tests/mb_eregi_replace.phpt | ||||
| * | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2012-03-22 | 1 | -3/+3 |
| |\ \ | | |/ | | | | | | | | | | * PHP-5.3: Fix test, and merge the modification from trunk | ||||
| | * | Fix test, and merge the modification from trunk | Xinchen Hui | 2012-03-22 | 1 | -3/+3 |
| | | | |||||
| | * | fixed failed tests (backport from PHP_5_4/trunk). | Rui Hirokawa | 2012-01-14 | 3 | -3/+6 |
| | | | |||||
| | * | - Year++ | Felipe Pena | 2012-01-01 | 7 | -7/+7 |
| | | | |||||
| | * | - Fix the fix (thanks Chris Jones!) | Felipe Pena | 2011-11-22 | 1 | -1/+1 |
| | | |