Annotation of embedaddon/php/ext/ftp/tests/bug7216-2.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #7216 (ftp_mkdir returns nothing (2))
        !             3: --SKIPIF--
        !             4: <?php
        !             5: require 'skipif.inc';
        !             6: ?>
        !             7: --FILE--
        !             8: <?php
        !             9: require 'server.inc';
        !            10: 
        !            11: $ftp = ftp_connect('127.0.0.1', $port);
        !            12: if (!$ftp) die("Couldn't connect to the server");
        !            13: 
        !            14: var_dump(ftp_login($ftp, 'anonymous', 'IEUser@'));
        !            15: // test for the correct behavior this time
        !            16: var_dump(ftp_mkdir($ftp, 'CVS'));
        !            17: 
        !            18: ?>
        !            19: --EXPECT--
        !            20: bool(true)
        !            21: string(20) "/path/to/ftproot/CVS"

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