summaryrefslogtreecommitdiff
path: root/ext/ctype
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-02-19 05:59:41 -0300
committerNikita Popov <nikita.ppv@gmail.com>2018-02-20 21:53:48 +0100
commitded3d984c6133b1f508ed84e96df3316e207c99b (patch)
tree175c208197d72966fbeb22c1df9dac0a1a33124f /ext/ctype
parenta00286921e8963d284a7a5db0c1fecffa6cb6b54 (diff)
downloadphp-git-ded3d984c6133b1f508ed84e96df3316e207c99b.tar.gz
Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
Diffstat (limited to 'ext/ctype')
-rw-r--r--ext/ctype/tests/ctype_alnum_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_alnum_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_alnum_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_alnum_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_alnum_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_alpha_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_alpha_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_alpha_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_alpha_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_alpha_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_cntrl_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_cntrl_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_cntrl_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_cntrl_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_cntrl_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_digit_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_digit_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_digit_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_digit_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_digit_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_graph_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_graph_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_graph_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_graph_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_graph_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_lower_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_lower_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_lower_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_lower_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_lower_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_print_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_print_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_print_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_print_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_print_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_punct_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_punct_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_punct_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_punct_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_punct_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_space_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_space_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_space_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_space_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_space_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_upper_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_upper_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_upper_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_upper_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_upper_variation4.phpt2
-rw-r--r--ext/ctype/tests/ctype_xdigit_basic.phpt2
-rw-r--r--ext/ctype/tests/ctype_xdigit_variation1.phpt2
-rw-r--r--ext/ctype/tests/ctype_xdigit_variation2.phpt2
-rw-r--r--ext/ctype/tests/ctype_xdigit_variation3.phpt2
-rw-r--r--ext/ctype/tests/ctype_xdigit_variation4.phpt2
55 files changed, 55 insertions, 55 deletions
diff --git a/ext/ctype/tests/ctype_alnum_basic.phpt b/ext/ctype/tests/ctype_alnum_basic.phpt
index 2a18b82abd..bf3712d9da 100644
--- a/ext/ctype/tests/ctype_alnum_basic.phpt
+++ b/ext/ctype/tests/ctype_alnum_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_alnum($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alnum() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_alnum_variation1.phpt b/ext/ctype/tests/ctype_alnum_variation1.phpt
index 2505428d21..188a86ce40 100644
--- a/ext/ctype/tests/ctype_alnum_variation1.phpt
+++ b/ext/ctype/tests/ctype_alnum_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alnum() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_alnum_variation2.phpt b/ext/ctype/tests/ctype_alnum_variation2.phpt
index 94ae22da1a..a73d06816b 100644
--- a/ext/ctype/tests/ctype_alnum_variation2.phpt
+++ b/ext/ctype/tests/ctype_alnum_variation2.phpt
@@ -27,7 +27,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alnum() : usage variations ***
character code 48 is alpha numeric
character code 49 is alpha numeric
diff --git a/ext/ctype/tests/ctype_alnum_variation3.phpt b/ext/ctype/tests/ctype_alnum_variation3.phpt
index a9da6c932a..3128feec6c 100644
--- a/ext/ctype/tests/ctype_alnum_variation3.phpt
+++ b/ext/ctype/tests/ctype_alnum_variation3.phpt
@@ -55,7 +55,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alnum() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_alnum_variation4.phpt b/ext/ctype/tests/ctype_alnum_variation4.phpt
index 49167eb34d..d4577b51fb 100644
--- a/ext/ctype/tests/ctype_alnum_variation4.phpt
+++ b/ext/ctype/tests/ctype_alnum_variation4.phpt
@@ -39,7 +39,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alnum() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_alpha_basic.phpt b/ext/ctype/tests/ctype_alpha_basic.phpt
index f0d8af8abc..041343770e 100644
--- a/ext/ctype/tests/ctype_alpha_basic.phpt
+++ b/ext/ctype/tests/ctype_alpha_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_alpha($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alpha() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_alpha_variation1.phpt b/ext/ctype/tests/ctype_alpha_variation1.phpt
index baa75c8d4e..52ca389749 100644
--- a/ext/ctype/tests/ctype_alpha_variation1.phpt
+++ b/ext/ctype/tests/ctype_alpha_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alpha() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_alpha_variation2.phpt b/ext/ctype/tests/ctype_alpha_variation2.phpt
index 866f372599..f50328079e 100644
--- a/ext/ctype/tests/ctype_alpha_variation2.phpt
+++ b/ext/ctype/tests/ctype_alpha_variation2.phpt
@@ -27,7 +27,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alpha() : usage variations ***
character code 65 is alphabetic
character code 66 is alphabetic
diff --git a/ext/ctype/tests/ctype_alpha_variation3.phpt b/ext/ctype/tests/ctype_alpha_variation3.phpt
index 5ab4bd6dc2..87cfc6fc00 100644
--- a/ext/ctype/tests/ctype_alpha_variation3.phpt
+++ b/ext/ctype/tests/ctype_alpha_variation3.phpt
@@ -56,7 +56,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alpha() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_alpha_variation4.phpt b/ext/ctype/tests/ctype_alpha_variation4.phpt
index c41d97291b..cc2067580a 100644
--- a/ext/ctype/tests/ctype_alpha_variation4.phpt
+++ b/ext/ctype/tests/ctype_alpha_variation4.phpt
@@ -39,7 +39,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_alpha() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_cntrl_basic.phpt b/ext/ctype/tests/ctype_cntrl_basic.phpt
index b9241adc94..2e44795541 100644
--- a/ext/ctype/tests/ctype_cntrl_basic.phpt
+++ b/ext/ctype/tests/ctype_cntrl_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_cntrl($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_cntrl() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_cntrl_variation1.phpt b/ext/ctype/tests/ctype_cntrl_variation1.phpt
index f74c13f967..abe74a0567 100644
--- a/ext/ctype/tests/ctype_cntrl_variation1.phpt
+++ b/ext/ctype/tests/ctype_cntrl_variation1.phpt
@@ -100,7 +100,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_cntrl() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_cntrl_variation2.phpt b/ext/ctype/tests/ctype_cntrl_variation2.phpt
index b48ab94450..7ad64d8369 100644
--- a/ext/ctype/tests/ctype_cntrl_variation2.phpt
+++ b/ext/ctype/tests/ctype_cntrl_variation2.phpt
@@ -27,7 +27,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_cntrl() : usage variations ***
character code 0 is control character
character code 1 is control character
diff --git a/ext/ctype/tests/ctype_cntrl_variation3.phpt b/ext/ctype/tests/ctype_cntrl_variation3.phpt
index 4ae5bc3188..529c23876f 100644
--- a/ext/ctype/tests/ctype_cntrl_variation3.phpt
+++ b/ext/ctype/tests/ctype_cntrl_variation3.phpt
@@ -63,7 +63,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_cntrl() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_cntrl_variation4.phpt b/ext/ctype/tests/ctype_cntrl_variation4.phpt
index 0e1c50379b..159ba911b1 100644
--- a/ext/ctype/tests/ctype_cntrl_variation4.phpt
+++ b/ext/ctype/tests/ctype_cntrl_variation4.phpt
@@ -38,7 +38,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_cntrl() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_digit_basic.phpt b/ext/ctype/tests/ctype_digit_basic.phpt
index 049580db1b..73e127356c 100644
--- a/ext/ctype/tests/ctype_digit_basic.phpt
+++ b/ext/ctype/tests/ctype_digit_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_digit($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_digit() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_digit_variation1.phpt b/ext/ctype/tests/ctype_digit_variation1.phpt
index 306949130d..527d22f821 100644
--- a/ext/ctype/tests/ctype_digit_variation1.phpt
+++ b/ext/ctype/tests/ctype_digit_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_digit() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_digit_variation2.phpt b/ext/ctype/tests/ctype_digit_variation2.phpt
index 318737f4f4..4122737d03 100644
--- a/ext/ctype/tests/ctype_digit_variation2.phpt
+++ b/ext/ctype/tests/ctype_digit_variation2.phpt
@@ -27,7 +27,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_digit() : usage variations ***
character code 48 is a numeric digit
character code 49 is a numeric digit
diff --git a/ext/ctype/tests/ctype_digit_variation3.phpt b/ext/ctype/tests/ctype_digit_variation3.phpt
index 66ef6f344c..c966132d16 100644
--- a/ext/ctype/tests/ctype_digit_variation3.phpt
+++ b/ext/ctype/tests/ctype_digit_variation3.phpt
@@ -62,7 +62,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_digit() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_digit_variation4.phpt b/ext/ctype/tests/ctype_digit_variation4.phpt
index c94be3e6df..f937e07020 100644
--- a/ext/ctype/tests/ctype_digit_variation4.phpt
+++ b/ext/ctype/tests/ctype_digit_variation4.phpt
@@ -39,7 +39,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_digit() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_graph_basic.phpt b/ext/ctype/tests/ctype_graph_basic.phpt
index b45aac6d45..171959d944 100644
--- a/ext/ctype/tests/ctype_graph_basic.phpt
+++ b/ext/ctype/tests/ctype_graph_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_graph($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_graph() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_graph_variation1.phpt b/ext/ctype/tests/ctype_graph_variation1.phpt
index 03471f1bda..f8dee30808 100644
--- a/ext/ctype/tests/ctype_graph_variation1.phpt
+++ b/ext/ctype/tests/ctype_graph_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_graph() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_graph_variation2.phpt b/ext/ctype/tests/ctype_graph_variation2.phpt
index 8f8b3fed10..5e87d65374 100644
--- a/ext/ctype/tests/ctype_graph_variation2.phpt
+++ b/ext/ctype/tests/ctype_graph_variation2.phpt
@@ -27,7 +27,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_graph() : usage variations ***
character code 33 is a printable character
character code 34 is a printable character
diff --git a/ext/ctype/tests/ctype_graph_variation3.phpt b/ext/ctype/tests/ctype_graph_variation3.phpt
index 327a497e9f..263909a9d3 100644
--- a/ext/ctype/tests/ctype_graph_variation3.phpt
+++ b/ext/ctype/tests/ctype_graph_variation3.phpt
@@ -59,7 +59,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_graph() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_graph_variation4.phpt b/ext/ctype/tests/ctype_graph_variation4.phpt
index d425b4c7c3..eb733c1d2a 100644
--- a/ext/ctype/tests/ctype_graph_variation4.phpt
+++ b/ext/ctype/tests/ctype_graph_variation4.phpt
@@ -39,7 +39,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_graph() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_lower_basic.phpt b/ext/ctype/tests/ctype_lower_basic.phpt
index be6c0affd2..08dcf81126 100644
--- a/ext/ctype/tests/ctype_lower_basic.phpt
+++ b/ext/ctype/tests/ctype_lower_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_lower($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_lower() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_lower_variation1.phpt b/ext/ctype/tests/ctype_lower_variation1.phpt
index 91c8ef5407..9c4a306234 100644
--- a/ext/ctype/tests/ctype_lower_variation1.phpt
+++ b/ext/ctype/tests/ctype_lower_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_lower() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_lower_variation2.phpt b/ext/ctype/tests/ctype_lower_variation2.phpt
index 39eff9a956..ac14004e1e 100644
--- a/ext/ctype/tests/ctype_lower_variation2.phpt
+++ b/ext/ctype/tests/ctype_lower_variation2.phpt
@@ -27,7 +27,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_lower() : usage variations ***
character code 97 is a lower case character
character code 98 is a lower case character
diff --git a/ext/ctype/tests/ctype_lower_variation3.phpt b/ext/ctype/tests/ctype_lower_variation3.phpt
index 061cc1ce9a..b2cbe2933c 100644
--- a/ext/ctype/tests/ctype_lower_variation3.phpt
+++ b/ext/ctype/tests/ctype_lower_variation3.phpt
@@ -57,7 +57,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_lower() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_lower_variation4.phpt b/ext/ctype/tests/ctype_lower_variation4.phpt
index 25e3d17f87..30dfb4c931 100644
--- a/ext/ctype/tests/ctype_lower_variation4.phpt
+++ b/ext/ctype/tests/ctype_lower_variation4.phpt
@@ -39,7 +39,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_lower() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_print_basic.phpt b/ext/ctype/tests/ctype_print_basic.phpt
index 49cb26fbdd..17df251e23 100644
--- a/ext/ctype/tests/ctype_print_basic.phpt
+++ b/ext/ctype/tests/ctype_print_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_print($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_print() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_print_variation1.phpt b/ext/ctype/tests/ctype_print_variation1.phpt
index a882c96020..e2223c7223 100644
--- a/ext/ctype/tests/ctype_print_variation1.phpt
+++ b/ext/ctype/tests/ctype_print_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_print() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_print_variation2.phpt b/ext/ctype/tests/ctype_print_variation2.phpt
index c216e4da4a..5d620d7112 100644
--- a/ext/ctype/tests/ctype_print_variation2.phpt
+++ b/ext/ctype/tests/ctype_print_variation2.phpt
@@ -27,7 +27,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_print() : usage variations ***
character code 32 is a printable character
character code 33 is a printable character
diff --git a/ext/ctype/tests/ctype_print_variation3.phpt b/ext/ctype/tests/ctype_print_variation3.phpt
index 7b90e4fd08..fb872357fa 100644
--- a/ext/ctype/tests/ctype_print_variation3.phpt
+++ b/ext/ctype/tests/ctype_print_variation3.phpt
@@ -54,7 +54,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_print() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_print_variation4.phpt b/ext/ctype/tests/ctype_print_variation4.phpt
index d6dc84ac50..21e040dcc2 100644
--- a/ext/ctype/tests/ctype_print_variation4.phpt
+++ b/ext/ctype/tests/ctype_print_variation4.phpt
@@ -38,7 +38,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_print() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_punct_basic.phpt b/ext/ctype/tests/ctype_punct_basic.phpt
index 647f8519b1..2a1296bdb1 100644
--- a/ext/ctype/tests/ctype_punct_basic.phpt
+++ b/ext/ctype/tests/ctype_punct_basic.phpt
@@ -23,7 +23,7 @@ var_dump(ctype_punct($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_punct() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_punct_variation1.phpt b/ext/ctype/tests/ctype_punct_variation1.phpt
index 0f57c45a66..ccf882a191 100644
--- a/ext/ctype/tests/ctype_punct_variation1.phpt
+++ b/ext/ctype/tests/ctype_punct_variation1.phpt
@@ -100,7 +100,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_punct() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_punct_variation2.phpt b/ext/ctype/tests/ctype_punct_variation2.phpt
index 3a4a66ac7b..a75e3d5181 100644
--- a/ext/ctype/tests/ctype_punct_variation2.phpt
+++ b/ext/ctype/tests/ctype_punct_variation2.phpt
@@ -28,7 +28,7 @@ for ($c = 1; $c < 256; $c++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_punct() : usage variations ***
character code 33 is punctuation
character code 34 is punctuation
diff --git a/ext/ctype/tests/ctype_punct_variation3.phpt b/ext/ctype/tests/ctype_punct_variation3.phpt
index 73e377eed1..cfc6b386bf 100644
--- a/ext/ctype/tests/ctype_punct_variation3.phpt
+++ b/ext/ctype/tests/ctype_punct_variation3.phpt
@@ -57,7 +57,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_punct() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_punct_variation4.phpt b/ext/ctype/tests/ctype_punct_variation4.phpt
index 7b7201b140..f44e8db515 100644
--- a/ext/ctype/tests/ctype_punct_variation4.phpt
+++ b/ext/ctype/tests/ctype_punct_variation4.phpt
@@ -40,7 +40,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_punct() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_space_basic.phpt b/ext/ctype/tests/ctype_space_basic.phpt
index 55d9a81cbc..4287f477ee 100644
--- a/ext/ctype/tests/ctype_space_basic.phpt
+++ b/ext/ctype/tests/ctype_space_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_space($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_space() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_space_variation1.phpt b/ext/ctype/tests/ctype_space_variation1.phpt
index 4a469ae037..daa68dad6a 100644
--- a/ext/ctype/tests/ctype_space_variation1.phpt
+++ b/ext/ctype/tests/ctype_space_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_space() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_space_variation2.phpt b/ext/ctype/tests/ctype_space_variation2.phpt
index 6ffdb9c5ed..ba706333e8 100644
--- a/ext/ctype/tests/ctype_space_variation2.phpt
+++ b/ext/ctype/tests/ctype_space_variation2.phpt
@@ -26,7 +26,7 @@ for ($c = 1; $c < 256; $c++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_space() : usage variations ***
character code 9 is a space character
character code 10 is a space character
diff --git a/ext/ctype/tests/ctype_space_variation3.phpt b/ext/ctype/tests/ctype_space_variation3.phpt
index bb8423b1ee..ba4222b640 100644
--- a/ext/ctype/tests/ctype_space_variation3.phpt
+++ b/ext/ctype/tests/ctype_space_variation3.phpt
@@ -57,7 +57,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_space() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_space_variation4.phpt b/ext/ctype/tests/ctype_space_variation4.phpt
index 305c123e27..24a662b4cb 100644
--- a/ext/ctype/tests/ctype_space_variation4.phpt
+++ b/ext/ctype/tests/ctype_space_variation4.phpt
@@ -38,7 +38,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_space() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_upper_basic.phpt b/ext/ctype/tests/ctype_upper_basic.phpt
index 635e4818dc..0d40e4294c 100644
--- a/ext/ctype/tests/ctype_upper_basic.phpt
+++ b/ext/ctype/tests/ctype_upper_basic.phpt
@@ -22,7 +22,7 @@ var_dump(ctype_upper($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_upper() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_upper_variation1.phpt b/ext/ctype/tests/ctype_upper_variation1.phpt
index a257cd3f4a..d3cf1c98d8 100644
--- a/ext/ctype/tests/ctype_upper_variation1.phpt
+++ b/ext/ctype/tests/ctype_upper_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_upper() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_upper_variation2.phpt b/ext/ctype/tests/ctype_upper_variation2.phpt
index 9357feb1e4..5a8a2396da 100644
--- a/ext/ctype/tests/ctype_upper_variation2.phpt
+++ b/ext/ctype/tests/ctype_upper_variation2.phpt
@@ -26,7 +26,7 @@ for ($i = 0; $i < 256; $i++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_upper() : usage variations ***
character code 65 is a uppercase character
character code 66 is a uppercase character
diff --git a/ext/ctype/tests/ctype_upper_variation3.phpt b/ext/ctype/tests/ctype_upper_variation3.phpt
index 3e4509e345..9a25698e49 100644
--- a/ext/ctype/tests/ctype_upper_variation3.phpt
+++ b/ext/ctype/tests/ctype_upper_variation3.phpt
@@ -56,7 +56,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_upper() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_upper_variation4.phpt b/ext/ctype/tests/ctype_upper_variation4.phpt
index 0c27992159..cdd99d1078 100644
--- a/ext/ctype/tests/ctype_upper_variation4.phpt
+++ b/ext/ctype/tests/ctype_upper_variation4.phpt
@@ -38,7 +38,7 @@ foreach($hex_values as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_upper() : usage variations ***
-- Octal Values --
diff --git a/ext/ctype/tests/ctype_xdigit_basic.phpt b/ext/ctype/tests/ctype_xdigit_basic.phpt
index 179115d23d..562846cfd5 100644
--- a/ext/ctype/tests/ctype_xdigit_basic.phpt
+++ b/ext/ctype/tests/ctype_xdigit_basic.phpt
@@ -21,7 +21,7 @@ var_dump(ctype_xdigit($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_xdigit() : basic functionality ***
bool(true)
bool(false)
diff --git a/ext/ctype/tests/ctype_xdigit_variation1.phpt b/ext/ctype/tests/ctype_xdigit_variation1.phpt
index 963755b358..d220729fe0 100644
--- a/ext/ctype/tests/ctype_xdigit_variation1.phpt
+++ b/ext/ctype/tests/ctype_xdigit_variation1.phpt
@@ -99,7 +99,7 @@ fclose($fp);
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_xdigit() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_xdigit_variation2.phpt b/ext/ctype/tests/ctype_xdigit_variation2.phpt
index 1e7b7bd4b4..458c54be11 100644
--- a/ext/ctype/tests/ctype_xdigit_variation2.phpt
+++ b/ext/ctype/tests/ctype_xdigit_variation2.phpt
@@ -27,7 +27,7 @@ for($c = 1; $c < 256; $c++) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_xdigit() : usage variations ***
character code 48 is a hexadecimal 'digit'
character code 49 is a hexadecimal 'digit'
diff --git a/ext/ctype/tests/ctype_xdigit_variation3.phpt b/ext/ctype/tests/ctype_xdigit_variation3.phpt
index 2c9960ced2..282643a95d 100644
--- a/ext/ctype/tests/ctype_xdigit_variation3.phpt
+++ b/ext/ctype/tests/ctype_xdigit_variation3.phpt
@@ -57,7 +57,7 @@ foreach($values as $value) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_xdigit() : usage variations ***
-- Iteration 1 --
diff --git a/ext/ctype/tests/ctype_xdigit_variation4.phpt b/ext/ctype/tests/ctype_xdigit_variation4.phpt
index 4707bcebff..f843edb0dc 100644
--- a/ext/ctype/tests/ctype_xdigit_variation4.phpt
+++ b/ext/ctype/tests/ctype_xdigit_variation4.phpt
@@ -54,7 +54,7 @@ foreach($hex_values2 as $c) {
setlocale(LC_CTYPE, $orig);
?>
===DONE===
---EXPECTF--
+--EXPECT--
*** Testing ctype_xdigit() : usage variations ***
-- Octal values --