Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Close pipes to avoid deadlock. | James E. Flemer | 2002-08-03 | 1 | -0/+6 |
| | | | | | Submitted By: Melvyn Sopacua <msopacua@idg.nl> | ||||
* | Add test for the index resetting. | foobar | 2002-08-01 | 1 | -1/+4 |
| | |||||
* | Added tests for array_shift/array_pop. | foobar | 2002-08-01 | 2 | -0/+96 |
| | |||||
* | Fixed stripslashes when magic_quotes_sybase is enabled, and add a test for | Sander Roobol | 2002-06-18 | 1 | -3/+14 |
| | | | | | | add- and stripslashes(). # this time without cvs messing up and aborting, hopefully :) | ||||
* | Fix stripslashes when magic_quotes_sybase is enabled, and add a test for | Sander Roobol | 2002-06-18 | 1 | -0/+21 |
| | | | | | add- and stripslashes(). | ||||
* | fix for bug #10616 -> mktime() with negative date offsets not working on MacOSX | Hartmut Holzgraefe | 2002-06-12 | 1 | -0/+44 |
| | |||||
* | Add simple test case for proc_open | Wez Furlong | 2002-05-23 | 1 | -0/+29 |
| | |||||
* | Remove leading "./" from include filenames as in PHP this defeats include_path. | Preston L. Bannister | 2002-05-16 | 9 | -11/+10 |
| | |||||
* | - Made all is_*() functions to return only boolean values. | foobar | 2002-05-16 | 2 | -12/+26 |
| | | | | | - Killed the "file not found" error for is_link(). (finally..) | ||||
* | revert last bogus change. There is bug in is_file() | foobar | 2002-04-30 | 1 | -1/+1 |
| | |||||
* | Fix is_file test. | Wez Furlong | 2002-04-30 | 1 | -1/+1 |
| | | | | | # Is there a good reason for having the actual test in an include file?? | ||||
* | Add test case for file_exist/is_file | Yasuo Ohgaki | 2002-04-28 | 2 | -0/+30 |
| | |||||
* | fix testproblem | Marcus Boerger | 2002-04-11 | 1 | -1/+1 |
| | |||||
* | fix and regression test for Bug #16473 | Hartmut Holzgraefe | 2002-04-07 | 1 | -0/+6 |
| | |||||
* | (PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2 | Kirill Maximov | 2002-04-01 | 2 | -3/+16 |
| | | | | | @ Fixed CR/LF processing for Windows/OS2 in quoted_printable_decode (kir) | ||||
* | add test for file_get_contents | Wez Furlong | 2002-03-28 | 1 | -0/+54 |
| | |||||
* | Fixed the array-tests. Broke the test up into various smaller tests. | Sander Roobol | 2002-03-26 | 6 | -15497/+785 |
| | | | | | | Reduced the test data because it was unmanageable. # I hope everything is ok :) | ||||
* | Added tests for pow()'ing with broken exponents and some additional test | Sander Roobol | 2002-03-21 | 2 | -1/+16 |
| | | | | | for count()'ing arrays. | ||||
* | Fix calculation of output buffer size in wordwrap(). (Thanks to Wez.) | jim winstead | 2002-03-18 | 1 | -0/+2 |
| | |||||
* | - Renamed aggregate.lib.php -> aggregate.lib (.php files are always deleted ↵ | foobar | 2002-03-10 | 10 | -9/+9 |
| | | | | bycvsclean) | ||||
* | - Fix tests to work with CLI | Derick Rethans | 2002-03-05 | 18 | -16/+19 |
| | | | | | #- Not totally done, but this makes it a lot better | ||||
* | Adding object aggregation capability along with tests. | Andrei Zmievski | 2002-02-21 | 10 | -0/+314 |
| | |||||
* | Rename finite/isinf/isnan to more standard is_*() names. | jim winstead | 2002-01-09 | 1 | -8/+8 |
| | |||||
* | - Fix bug introduced in earlier patch | Derick Rethans | 2002-01-09 | 1 | -0/+8 |
| | |||||
* | More tweaking of wordwrap() with the cut parameter set. It was being a | jim winstead | 2002-01-05 | 1 | -2/+5 |
| | | | | | | little too aggressive and cutting words without breaking at spaces first. (A couple of tests were incorrect.) | ||||
* | New memcpy()-based wordwrap() implementation. The simple case | jim winstead | 2002-01-05 | 1 | -0/+13 |
| | | | | | | | | | | | | | (single-character break, no forced break) appears to be about 60% faster, and there's simply no comparison for non-simple cases with non-trivial amounts of text. The old algorithm was O(n^2) (with an unfortunately large constant factor) because of the use of strncat(), the new one is O(n). Added some more tests, too. @ - Made wordwrap() significantly faster. (Jim) # test case: $t = join('',file('ChangeLog')); $w = wordwrap($t,10,"\n",1); # new code completes in less than a second. i'm still waiting for the # old code to finish. | ||||
* | Fixed pow(), and added finite(), isinf(), and isnan(). Also fixed | jim winstead | 2002-01-05 | 1 | -40/+40 |
| | | | | | | | | | | | | pow() tests. @- Fixed pow(), and added finite(), isinf(), and isnan(). (Jim) # Jeroen was on crack, and apparently flunked arithmetic. Names of new # functions subject to change if people get persnickety about them. # (They're currently the same as the underlying C library function # names. Hope nobody forgets to update the tests if they change the # names.) # Oh, and pow() uses the new parameter-passing API now. | ||||
* | good grief, positive powers of 0 are well-defined. (code fix coming.) | jim winstead | 2002-01-05 | 1 | -6/+6 |
| | |||||
* | Surprising how tests can fail when they don't have any supporting data :) ↵ | Zak Greant | 2002-01-05 | 1 | -0/+195 |
| | | | | Thanks for the catch Jan and Jim | ||||
* | Fixed segfault in wordwrap() when wrapping to zero width and using | jim winstead | 2002-01-04 | 1 | -0/+19 |
| | | | | | | | | | | | multi-character break or trying to force cut (bug #12768, now fails and issues a warning because forcing a zero-width cut doesn't make sense). Also converted to new paramater-passing API and avoid making an extra copy of the return values. # also added tests. @- Fixed segfault in wordwrap() when wrapping to zero width and using @ multi-character break or trying to force cut (bug #12768). (Jim) | ||||
* | - Added test for recursive counting | Derick Rethans | 2001-12-29 | 1 | -0/+37 |
| | |||||
* | - Add test for floor and ceil | Derick Rethans | 2001-12-22 | 1 | -0/+47 |
| | |||||
* | Modified array_walk, arsort, asort, krsort, ksort, rsort, shuffle, sort, | Zak Greant | 2001-12-22 | 1 | -0/+15409 |
| | | | | | | | | | | | | | | | | | | uasort, uksort and usort. Corrected prototype comments for all. Converted to use zend_parse_parameters, except for the u.?sort functions. Changed return values for failure from implicit NULL to explicit FALSE in asort(), krsort(), and ksort(). Changed pval to zval in the u.?sort functions. Added test to help ensure that fixes to code do not change function behavior. Tests are quite large (~237k) but compress down to ~16k. Please let me know if this is a problem! | ||||
* | Mail should go to php-dev | Derick Rethans | 2001-12-16 | 1 | -2/+2 |
| | |||||
* | improve last patch: | Thies C. Arntzen | 2001-12-01 | 1 | -2/+4 |
| | | | | | | non existant object variables are now serialized as NULL, this saves us from buffering the serialized data. | ||||
* | serialized data would be incoorect if __sleep() returned a variable-name | Thies C. Arntzen | 2001-12-01 | 1 | -0/+34 |
| | | | | | | which is non-existant in the object. submitted by: Bernd Roemer <berndr@bonn.edu> | ||||
* | Fix most of these tests - still think there is a bug in the long->float | Rasmus Lerdorf | 2001-11-13 | 1 | -11/+11 |
| | | | | | conversion stuff somewhere | ||||
* | Different operating systems handle the group x bit differently, so | Rasmus Lerdorf | 2001-11-13 | 1 | -3/+3 |
| | | | | | simplify this test to test the user x bit instead | ||||
* | - Fix for bugs #9640 and #13789 | Derick Rethans | 2001-10-27 | 1 | -32/+52 |
| | |||||
* | Make math tests pass, round & co don't work this way, and there was an error | Jeroen van Wolffelaar | 2001-10-22 | 4 | -46/+67 |
| | | | | | in expected output | ||||
* | Fixed bug: #12617 | foobar | 2001-10-22 | 1 | -8/+10 |
| | |||||
* | * remove version_{lt,le,gt,ge,eq} functions, added a third optional | Stig Bakken | 2001-10-11 | 1 | -1/+526 |
| | | | | | parameter to version_compare doing the same thing | ||||
* | @Added version_compare() function (Stig) | Stig Bakken | 2001-10-06 | 1 | -0/+75 |
| | |||||
* | Made assert test pass on systems with short open tags disabled. | Edin Kadribasic | 2001-10-06 | 1 | -1/+1 |
| | | | | | Added .cvsignore | ||||
* | Fix the pow-test, it now succeeds on my machine | Jeroen van Wolffelaar | 2001-10-05 | 1 | -1/+1 |
| | |||||
* | Add test for array_search and in_array | Jeroen van Wolffelaar | 2001-10-05 | 1 | -0/+25 |
| | | | | | (should be expanded though) | ||||
* | fix strtr() when called with two parameters. this has been broken for some time! | Thies C. Arntzen | 2001-09-13 | 1 | -0/+11 |
| | | | | | | guys, when "optimizing" functions you _shoudl_ write a testcase for the working function and make _sure_ that it works afterwards! | ||||
* | test big numbers too | Stanislav Malyshev | 2001-08-20 | 1 | -0/+4 |
| | |||||
* | make this test work. | foobar | 2001-08-18 | 1 | -2/+7 |
| | |||||
* | Fix test | Jeroen van Wolffelaar | 2001-08-05 | 1 | -1/+1 |
| |