mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
Remove unecessaries SKIPIF sections for necessary extensions
This commit is contained in:
parent
1f74300138
commit
35be0590ed
3 changed files with 1 additions and 10 deletions
|
@ -5,7 +5,7 @@ opcache.enable=1
|
||||||
opcache.enable_cli=1
|
opcache.enable_cli=1
|
||||||
opcache.optimization_level=-1
|
opcache.optimization_level=-1
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php if (!extension_loaded('Zend OPcache') || php_sapi_name() != "cli") die("skip CLI only"); ?>
|
<?php if (php_sapi_name() != "cli") die("skip CLI only"); ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,6 @@ $res = @include dirname(__FILE__)."/../../../../sapi/cli/tests/php_cli_server.in
|
||||||
if(!$res) {
|
if(!$res) {
|
||||||
die("skip could not open cli server script");
|
die("skip could not open cli server script");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CURL_WRAPPERS_ENABLED) {
|
|
||||||
die("skip curl wrappers used");
|
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -1,10 +1,5 @@
|
||||||
--TEST--
|
--TEST--
|
||||||
Bug #68996 (Invalid free of CG(interned_empty_string))
|
Bug #68996 (Invalid free of CG(interned_empty_string))
|
||||||
--SKIPIF--
|
|
||||||
<?php
|
|
||||||
if (getenv("USE_ZEND_ALLOC") !== "0")
|
|
||||||
print "skip Need Zend MM disabled";
|
|
||||||
?>
|
|
||||||
--INI--
|
--INI--
|
||||||
html_errors=1
|
html_errors=1
|
||||||
--FILE--
|
--FILE--
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue