1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00

Fix skipif to resolve the common reason this test fails

This commit is contained in:
Christopher Jones
2011-06-17 18:28:34 +00:00
parent b3182fda70
commit dba594a4e2

View File

@@ -6,7 +6,10 @@ http://bugs.php.net/bug.php?id=52013
--CREDITS--
Frederic Hardy frederic.hardy@mageekbox.net
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip"); ?>
<?php
if (!extension_loaded("phar")) die("skip");
if (!extension_loaded("zlib")) die("skip test needs zlib extension enabled to compress archives with gzip");
?>
--INI--
phar.require_hash=0
phar.readonly=0