Annotation of embedaddon/php/ext/date/tests/bug52062.phpt, revision 1.1.1.3

1.1       misho       1: --TEST--
                      2: Bug #52062 (large timestamps with DateTime::getTimestamp and DateTime::setTimestamp) (32 bit)
                      3: --SKIPIF--
                      4: <?php
                      5: if (PHP_INT_SIZE == 8) die('skip 32-bit only');
                      6: ?>
1.1.1.2   misho       7: --XFAIL--
                      8: Waiting for resolution of the 32-bit case.
1.1       misho       9: --INI--
                     10: date.timezone=UTC
                     11: --FILE--
                     12: <?php
                     13: $d = new DateTime('@100000000000');
                     14: var_dump($d->format('Y-m-d H:i:s U'));
                     15: var_dump($d->getTimestamp());
1.1.1.3 ! misho      16: var_dump($d->format('U'));
1.1       misho      17: 
                     18: $d->setTimestamp(100000000000);
                     19: var_dump($d->format('Y-m-d H:i:s U'));
                     20: var_dump($d->getTimestamp());
                     21: 
                     22: $i = new DateInterval('PT100000000000S');
                     23: var_dump($i->format('%s'));
                     24: ?>
                     25: --EXPECT--
                     26: string(32) "5138-11-16 09:46:40 100000000000"
1.1.1.3 ! misho      27: bool(false)
1.1       misho      28: string(12) "100000000000"
1.1.1.3 ! misho      29: string(30) "2008-07-11 04:56:32 1215752192"
        !            30: int(1215752192)
        !            31: string(10) "1215752192"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>