1--TEST-- 2Phar: corrupted zip (no end of zip record) 3--SKIPIF-- 4<?php if (!extension_loaded("phar")) die("skip"); ?> 5--FILE-- 6<?php 7try { 8 new PharData(dirname(__FILE__) . '/files/nozipend.zip'); 9} catch (Exception $e) { 10 echo $e->getMessage() . "\n"; 11} 12?> 13===DONE=== 14--EXPECTF-- 15phar error: end of central directory not found in zip-based phar "%snozipend.zip" 16===DONE=== 17