Annotation of embedaddon/php/ext/intl/tests/bug60192-compare.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #60192 (SegFault when Collator not constructed properly)
        !             3: --SKIPIF--
        !             4: <?php
        !             5:        if (!extension_loaded('intl')) { die('skip intl extension not available'); }
        !             6: ?>
        !             7: --FILE--
        !             8: <?php
        !             9: class Collator2 extends Collator{
        !            10:        public function __construct() {
        !            11:                // ommitting parent::__construct($someLocale);
        !            12:        }
        !            13: }
        !            14: 
        !            15: $c = new Collator2();
        !            16: $a = $c->compare('h', 'H');
        !            17: --EXPECTF--
        !            18: 
        !            19: Catchable fatal error: Collator::compare(): Object not initialized in %s on line %d

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