xref: /PHP-5.5/ext/phar/tests/zip/corrupt_003.phpt (revision 16b4d8e0)
1--TEST--
2Phar: corrupted zip (truncated file comment)
3--SKIPIF--
4<?php if (!extension_loaded("phar")) die("skip"); ?>
5<?php if (!extension_loaded("spl")) die("skip SPL not available"); ?>
6--FILE--
7<?php
8try {
9	new PharData(dirname(__FILE__) . '/files/filecomment.zip');
10} catch (Exception $e) {
11	echo $e->getMessage() . "\n";
12}
13?>
14===DONE===
15--EXPECTF--
16phar error: corrupt zip archive, zip file comment truncated in zip-based phar "%sfilecomment.zip"
17===DONE===
18