Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-release > by-pkgid > 2fcfb3e20ee2185e813b4a328965c5db > files > 14

php-mailparse-2.1.3-2mdv2008.1.x86_64.rpm

--TEST--
OO API Segfault when opening a file is not possible
--SKIPIF--
<?php 
/* vim600: sw=4 ts=4 fdm=marker syn=php
*/
if (!extension_loaded("mailparse")) print "skip"; ?>
--POST--
--GET--
--FILE--
<?php
error_reporting(0);
$msg = new MimeMessage("file", md5(uniqid("nothere")));
if (is_resource($msg))
	echo "Err??";
else
	echo "OK";
?>
--EXPECT--
OK