Skip to content

Commit 8c4b0dd

Browse files
committed
Add missing skip checks
1 parent ff2140c commit 8c4b0dd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ext/mbstring/tests/mbregex_stack_limit2.phpt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
--TEST--
22
Test oniguruma stack limit
33
--SKIPIF--
4-
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
4+
<?php
5+
extension_loaded('mbstring') or die('skip mbstring not available');
6+
extension_loaded('iconv') or die('skip iconv not available');
7+
if (!function_exists('mb_ereg_replace')) die('skip mb_ereg_replace not available');
8+
?>
59
--FILE--
610
<?php
711
function mb_trim( $string, $chars = "", $chars_array = array() )

0 commit comments

Comments
 (0)