Skip to content

Commit 35be059

Browse files
committed
Remove unecessaries SKIPIF sections for necessary extensions
1 parent 1f74300 commit 35be059

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

Zend/tests/constant_expressions_classes.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ opcache.enable=1
55
opcache.enable_cli=1
66
opcache.optimization_level=-1
77
--SKIPIF--
8-
<?php if (!extension_loaded('Zend OPcache') || php_sapi_name() != "cli") die("skip CLI only"); ?>
8+
<?php if (php_sapi_name() != "cli") die("skip CLI only"); ?>
99
--FILE--
1010
<?php
1111

ext/standard/tests/streams/bug64433.phpt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ $res = @include dirname(__FILE__)."/../../../../sapi/cli/tests/php_cli_server.in
88
if(!$res) {
99
die("skip could not open cli server script");
1010
}
11-
12-
if (CURL_WRAPPERS_ENABLED) {
13-
die("skip curl wrappers used");
14-
}
1511
?>
1612
--FILE--
1713
<?php

ext/standard/tests/strings/bug68996.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
Bug #68996 (Invalid free of CG(interned_empty_string))
3-
--SKIPIF--
4-
<?php
5-
if (getenv("USE_ZEND_ALLOC") !== "0")
6-
print "skip Need Zend MM disabled";
7-
?>
83
--INI--
94
html_errors=1
105
--FILE--

0 commit comments

Comments
 (0)