blob: a13c2a452afb3d97fb8a1e124cebdbc4367be617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Phar::mapPhar manifest too big
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip");?>
--FILE--
<?php
try {
Phar::mapPhar('hio');
} catch (Exception $e) {
echo $e->getMessage();
}
__HALT_COMPILER(); ?>~~~~
--EXPECTF--
manifest cannot be larger than 100 MB in phar "%s"
|