Annotation of embedaddon/php/ext/mysqli/tests/mysqli_get_client_version.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: mysqli_get_client_version()
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: <?php require_once('skipifemb.inc'); ?>
        !             6: --FILE--
        !             7: <?php  
        !             8:        if (!is_int($info = mysqli_get_client_version()) || ($info < 100))
        !             9:                printf("[001] Expecting int/any_non_empty, got %s/%s\n", gettype($info), $info);
        !            10:                
        !            11:        print "done!";
        !            12: ?>
        !            13: --EXPECTF--
        !            14: done!

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