Annotation of embedaddon/php/ext/standard/tests/strings/vprintf_basic7_64bit.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test vprintf() function : basic functionality - unsigned format
        !             3: --SKIPIF--
        !             4: <?php
        !             5: if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
        !             6: ?>
        !             7: --FILE--
        !             8: <?php
        !             9: /* Prototype  : string vprintf(string $format , aaray $args)
        !            10:  * Description: Output a formatted string 
        !            11:  * Source code: ext/standard/formatted_print.c
        !            12: */
        !            13: 
        !            14: echo "*** Testing vprintf() : basic functionality - using unsigned format ***\n";
        !            15: 
        !            16: // Initialise all required variables
        !            17: $format = "format";
        !            18: $format1 = "%u";
        !            19: $format2 = "%u %u";
        !            20: $format3 = "%u %u %u";
        !            21: $arg1 = array(-1111);
        !            22: $arg2 = array(-1111,-1234567);
        !            23: $arg3 = array(-1111,-1234567,-2345432);
        !            24: 
        !            25: $result = vprintf($format1,$arg1);
        !            26: echo "\n";
        !            27: var_dump($result);
        !            28: 
        !            29: $result = vprintf($format2,$arg2);
        !            30: echo "\n";
        !            31: var_dump($result);
        !            32: 
        !            33: $result = vprintf($format3,$arg3);
        !            34: echo "\n";
        !            35: var_dump($result);
        !            36: ?>
        !            37: ===DONE===
        !            38: --EXPECTF--
        !            39: *** Testing vprintf() : basic functionality - using unsigned format ***
        !            40: 18446744073709550505
        !            41: int(20)
        !            42: 18446744073709550505 18446744073708317049
        !            43: int(41)
        !            44: 18446744073709550505 18446744073708317049 18446744073707206184
        !            45: int(62)
        !            46: ===DONE===

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