summaryrefslogtreecommitdiff
path: root/ext/phar/tests/zip/corrupt_004.phpt
blob: 516fe31e5a3749787e0553ab9b4df1a7b29f1d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Phar: corrupted zip (central directory offset incorrect)
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip"); ?>
--FILE--
<?php
try {
	new PharData(__DIR__ . '/files/cdir_offset.zip');
} catch (Exception $e) {
	echo $e->getMessage() . "\n";
}
?>
===DONE===
--EXPECTF--
phar error: corrupted central directory entry, no magic signature in zip-based phar "%scdir_offset.zip"
===DONE===