summaryrefslogtreecommitdiff
path: root/ext/calendar/tests/jdtojewish64.phpt
Commit message (Collapse)AuthorAgeFilesLines
* Migrate skip checks to --EXTENSIONS--, p1Max Semenik2021-03-221-1/+2
| | | | | | | | | | | | | For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
* Add many missing closing PHP tags to testsMáté Kocsis2020-08-091-0/+1
| | | | Closes GH-5958
* Trim trailing whitespace in testsGabriel Caruso2018-10-141-1/+1
|
* Use EXPECT instead of EXPECTF when possibleGabriel Caruso2018-02-201-1/+1
| | | | EXPECTF logic in run-tests.php is considerable, so let's avoid it.
* Fixed bug #64895 Integer overflow in SndToJewishRemi Collet2013-05-221-2/+3
|
* Integer overflow in SndToJewish leads to php hangRemi Collet2013-05-211-0/+18
AT least in (inputDay is long, metonicCycle is int): metonicCycle = (inputDay + 310) / 6940; So large value give strange (negative) results or php hangs. This is patch already applied in some linux distro.