mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
12 lines
336 B
PHP
12 lines
336 B
PHP
--TEST--
|
|
PHP crash when zend_multibyte_encoding_converter returns (size_t)-1)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
|
|
--FILE--
|
|
<?php
|
|
$infile = __DIR__.'/exif_encoding_crash.jpg';
|
|
$exif_data = exif_read_data($infile);
|
|
echo "*** no core dump ***\n";
|
|
?>
|
|
--EXPECT--
|
|
*** no core dump ***
|