diff options
-rw-r--r-- | ext/filter/tests/bug44779.phpt | 2 | ||||
-rw-r--r-- | ext/filter/tests/bug46973.phpt | 2 | ||||
-rw-r--r-- | ext/filter/tests/bug47435.phpt | 2 | ||||
-rw-r--r-- | ext/filter/tests/bug47745.phpt | 2 | ||||
-rw-r--r-- | ext/filter/tests/bug48762.phpt | 2 | ||||
-rw-r--r-- | ext/filter/tests/bug50158.phpt | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/ext/filter/tests/bug44779.phpt b/ext/filter/tests/bug44779.phpt index 33a4fe4ffb..65a1e094ee 100644 --- a/ext/filter/tests/bug44779.phpt +++ b/ext/filter/tests/bug44779.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #44779 (filter returns NULL in CLI when it shouldn't) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php var_dump(filter_input(INPUT_SERVER, "PHP_SELF")); diff --git a/ext/filter/tests/bug46973.phpt b/ext/filter/tests/bug46973.phpt index 01a5118cfc..eacacf5b3e 100644 --- a/ext/filter/tests/bug46973.phpt +++ b/ext/filter/tests/bug46973.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #46973 (IPv6 address filter rejects valid address) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php diff --git a/ext/filter/tests/bug47435.phpt b/ext/filter/tests/bug47435.phpt index 42705fdc6e..957a00194a 100644 --- a/ext/filter/tests/bug47435.phpt +++ b/ext/filter/tests/bug47435.phpt @@ -1,5 +1,7 @@ --TEST--
Bug #47435 (FILTER_FLAG_NO_PRIV_RANGE and FILTER_FLAG_NO_RES_RANGE don't work with ipv6)
+--SKIPIF--
+<?php if (!extension_loaded("filter")) die("skip"); ?>
--FILE--
<?php
var_dump(filter_var("FC00::1", FILTER_VALIDATE_IP, FILTER_FLAG_IPV6));
diff --git a/ext/filter/tests/bug47745.phpt b/ext/filter/tests/bug47745.phpt index a8656fd933..feb0c2b6d8 100644 --- a/ext/filter/tests/bug47745.phpt +++ b/ext/filter/tests/bug47745.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #47745 (FILTER_VALIDATE_INT doesn't allow minimum integer) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php $s = (string)(-PHP_INT_MAX-1); diff --git a/ext/filter/tests/bug48762.phpt b/ext/filter/tests/bug48762.phpt index 1737f0a75e..195a616641 100644 --- a/ext/filter/tests/bug48762.phpt +++ b/ext/filter/tests/bug48762.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #48762 (IPv6 address filter still rejects valid address) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php diff --git a/ext/filter/tests/bug50158.phpt b/ext/filter/tests/bug50158.phpt index fbe2ca3af1..72c31a7205 100644 --- a/ext/filter/tests/bug50158.phpt +++ b/ext/filter/tests/bug50158.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #50158 (FILTER_VALIDATE_EMAIL fails with valid addresses containing = or ?) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php |