summaryrefslogtreecommitdiff
path: root/ext/phar/tests/zip/corrupt_003.phpt
blob: 9f5bcceeec55288044ad20572f2fccbc1bd56fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Phar: corrupted zip (truncated file comment)
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip"); ?>
--FILE--
<?php
try {
	new PharData(__DIR__ . '/files/filecomment.zip');
} catch (Exception $e) {
	echo $e->getMessage() . "\n";
}
?>
===DONE===
--EXPECTF--
phar error: end of central directory not found in zip-based phar "%sfilecomment.zip"
===DONE===