1--TEST--
2jdtogregorian(): test overflow
3--CREDITS--
4neweracracker@gmail.com
5--EXTENSIONS--
6calendar
7--SKIPIF--
8<?php
9if (PHP_INT_SIZE != 4) die('skip this test is for 32bit platforms only');
10?>
11--FILE--
12<?php
13for ($i=536838860; $i<536838870; $i++) {
14    echo $i, ':', jdtogregorian($i), PHP_EOL;
15}
16echo 'DONE', PHP_EOL;
17?>
18--EXPECT--
19536838860:10/11/1465102
20536838861:10/12/1465102
21536838862:10/13/1465102
22536838863:10/14/1465102
23536838864:10/15/1465102
24536838865:10/16/1465102
25536838866:10/17/1465102
26536838867:0/0/0
27536838868:0/0/0
28536838869:0/0/0
29DONE
30