Annotation of embedaddon/php/ext/session/tests/rfc1867_invalid_settings_2-win.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: session rfc1867 invalid settings 2
        !             3: --INI--
        !             4: session.upload_progress.freq=200%
        !             5: error_log=
        !             6: --SKIPIF--
        !             7: <?php 
        !             8: include('skipif.inc');
        !             9: if(substr(PHP_OS, 0, 3) != "WIN")
        !            10:         die("skip windows only test");
        !            11: ?>
        !            12: --FILE--
        !            13: <?php
        !            14: var_dump(ini_get("session.upload_progress.freq"));
        !            15: ?>
        !            16: --EXPECTF--
        !            17: Warning: PHP Startup: session.upload_progress.freq cannot be over 100% in %s
        !            18: string(2) "1%"
        !            19: PHP Warning:  PHP Startup: session.upload_progress.freq cannot be over 100% in %s

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