tony2001 Sun Sep 30 14:37:34 2007 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/standard/tests/strings join_error.phpt
sprintf_basic7.phpt
sprintf_basic8.phpt
sprintf_variation28.phpt
sprintf_variation29.phpt
sprintf_variation34.phpt
sprintf_variation35.phpt
sprintf_variation4.phpt
sprintf_variation40.phpt
sprintf_variation41.phpt
sprintf_variation44.phpt
str_pad.phpt str_repeat.phpt
stripos_variation1.phpt
stripos_variation10.phpt
stripos_variation11.phpt
stripos_variation14.phpt
stripos_variation15.phpt
stripos_variation2.phpt
stripos_variation7.phpt
stristr.phpt strpos.phpt
strstr.phpt
substr_count_error.phpt
uuencode.phpt
Log:
fix tests
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/join_error.phpt?r1=1.1.4.2&r2=1.1.4.3&diff_format=u
Index: php-src/ext/standard/tests/strings/join_error.phpt
diff -u php-src/ext/standard/tests/strings/join_error.phpt:1.1.4.2
php-src/ext/standard/tests/strings/join_error.phpt:1.1.4.3
--- php-src/ext/standard/tests/strings/join_error.phpt:1.1.4.2 Sat Sep 29
16:52:54 2007
+++ php-src/ext/standard/tests/strings/join_error.phpt Sun Sep 30 14:37:33 2007
@@ -45,6 +45,6 @@
-- Testing join() with less than expected no. of arguments --
-Warning: join(): Argument to join must be an array in %s on line %d
+Warning: join(): Argument to implode must be an array in %s on line %d
NULL
Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_basic7.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_basic7.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_basic7.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_basic7.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_basic7.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_basic7.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : basic functionality - unsigned format
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_basic8.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_basic8.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_basic8.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_basic8.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_basic8.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_basic8.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : basic functionality - octal format
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation28.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation28.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation28.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation28.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation28.phpt:1.2.2.2 Sat Sep
29 16:54:56 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation28.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - octal formats with integer values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -323,4 +329,4 @@
string(30) " 17777777777"
string(4) "0-7]"
string(1) "o"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation29.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation29.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation29.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation29.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation29.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation29.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - octal formats with float values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -163,4 +169,4 @@
string(30) " 4002620"
string(4) "0-7]"
string(1) "o"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation34.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation34.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation34.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation34.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation34.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation34.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - hexa formats with integer values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -323,4 +329,4 @@
string(30) " 7fffffff"
string(10) "0-9A-Fa-f]"
string(1) "x"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation35.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation35.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation35.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation35.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation35.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation35.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - hexa formats with float values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -228,4 +234,4 @@
string(30) " 100590"
string(10) "0-9A-Fa-f]"
string(1) "x"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation4.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation4.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation4.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation4.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation4.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation4.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - int formats with float values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -228,4 +234,4 @@
string(30) " 1050000"
string(4) "0-9]"
string(1) "d"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation40.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation40.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation40.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation40.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation40.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation40.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - unsigned formats with integer
values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -324,4 +330,4 @@
string(30) " 2147483647"
string(4) "0-9]"
string(1) "u"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation41.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation41.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation41.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation41.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation41.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation41.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - unsigned formats with float values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -307,4 +313,4 @@
string(30) " 1050000"
string(4) "0-9]"
string(1) "u"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/sprintf_variation44.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/sprintf_variation44.phpt
diff -u php-src/ext/standard/tests/strings/sprintf_variation44.phpt:1.2.2.2
php-src/ext/standard/tests/strings/sprintf_variation44.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/sprintf_variation44.phpt:1.2.2.2 Sat Sep
29 16:54:57 2007
+++ php-src/ext/standard/tests/strings/sprintf_variation44.phpt Sun Sep 30
14:37:33 2007
@@ -1,5 +1,11 @@
--TEST--
Test sprintf() function : usage variations - unsigned formats with string
values
+--SKIPIF--
+<?php
+if (PHP_INT_SIZE != 4) {
+ die("skip this test is for 32bit platform only");
+}
+?>
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
@@ -356,4 +362,4 @@
string(30) " 0"
string(4) "0-9]"
string(1) "u"
-Done
\ No newline at end of file
+Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/str_pad.phpt?r1=1.1.2.6&r2=1.1.2.6.2.1&diff_format=u
Index: php-src/ext/standard/tests/strings/str_pad.phpt
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/str_repeat.phpt?r1=1.2.6.2&r2=1.2.6.2.2.1&diff_format=u
Index: php-src/ext/standard/tests/strings/str_repeat.phpt
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stripos_variation1.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/stripos_variation1.phpt
diff -u php-src/ext/standard/tests/strings/stripos_variation1.phpt:1.2.2.2
php-src/ext/standard/tests/strings/stripos_variation1.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/stripos_variation1.phpt:1.2.2.2 Sat Sep
29 16:56:46 2007
+++ php-src/ext/standard/tests/strings/stripos_variation1.phpt Sun Sep 30
14:37:33 2007
@@ -118,17 +118,17 @@
bool(false)
-- Iteration 12 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 13 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 14 --
int(8)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stripos_variation10.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/stripos_variation10.phpt
diff -u php-src/ext/standard/tests/strings/stripos_variation10.phpt:1.2.2.2
php-src/ext/standard/tests/strings/stripos_variation10.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/stripos_variation10.phpt:1.2.2.2 Sat Sep
29 16:56:46 2007
+++ php-src/ext/standard/tests/strings/stripos_variation10.phpt Sun Sep 30
14:37:33 2007
@@ -123,27 +123,27 @@
-- Iteration 10 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 11 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 12 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 13 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 14 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 15 --
@@ -160,7 +160,7 @@
-- Iteration 19 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 20 --
@@ -171,26 +171,26 @@
-- Iteration 22 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 23 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 24 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 25 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 26 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
*** Done ***
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stripos_variation11.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/stripos_variation11.phpt
diff -u php-src/ext/standard/tests/strings/stripos_variation11.phpt:1.2.2.2
php-src/ext/standard/tests/strings/stripos_variation11.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/stripos_variation11.phpt:1.2.2.2 Sat Sep
29 16:56:46 2007
+++ php-src/ext/standard/tests/strings/stripos_variation11.phpt Sun Sep 30
14:37:33 2007
@@ -158,7 +158,7 @@
-- Iteration 16 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 17 --
bool(false)
@@ -166,34 +166,34 @@
-- Iteration 18 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 19 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 20 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 21 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 22 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 23 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 24 --
@@ -205,11 +205,11 @@
-- Iteration 25 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 26 --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
*** Done ***
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stripos_variation14.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/stripos_variation14.phpt
diff -u php-src/ext/standard/tests/strings/stripos_variation14.phpt:1.2.2.2
php-src/ext/standard/tests/strings/stripos_variation14.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/stripos_variation14.phpt:1.2.2.2 Sat Sep
29 16:56:46 2007
+++ php-src/ext/standard/tests/strings/stripos_variation14.phpt Sun Sep 30
14:37:33 2007
@@ -90,11 +90,11 @@
int(6)
-- Iteration 2 --
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 3 --
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 4 --
int(6)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stripos_variation15.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/stripos_variation15.phpt
diff -u php-src/ext/standard/tests/strings/stripos_variation15.phpt:1.2.2.2
php-src/ext/standard/tests/strings/stripos_variation15.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/stripos_variation15.phpt:1.2.2.2 Sat Sep
29 16:56:46 2007
+++ php-src/ext/standard/tests/strings/stripos_variation15.phpt Sun Sep 30
14:37:33 2007
@@ -94,23 +94,23 @@
bool(false)
-- Iteration 3 --
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 4 --
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 5 --
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 6 --
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 7 --
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
-- Iteration 8 --
bool(false)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stripos_variation2.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/stripos_variation2.phpt
diff -u php-src/ext/standard/tests/strings/stripos_variation2.phpt:1.2.2.2
php-src/ext/standard/tests/strings/stripos_variation2.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/stripos_variation2.phpt:1.2.2.2 Sat Sep
29 16:56:46 2007
+++ php-src/ext/standard/tests/strings/stripos_variation2.phpt Sun Sep 30
14:37:33 2007
@@ -120,17 +120,17 @@
int(10)
-- Iteration 12 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 13 --
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-Warning: stripos(): needle is not a string or an integer. in %s on line %d
+Warning: stripos(): needle is not a string or an integer in %s on line %d
bool(false)
-- Iteration 14 --
bool(false)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stripos_variation7.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/strings/stripos_variation7.phpt
diff -u php-src/ext/standard/tests/strings/stripos_variation7.phpt:1.2.2.2
php-src/ext/standard/tests/strings/stripos_variation7.phpt:1.2.2.3
--- php-src/ext/standard/tests/strings/stripos_variation7.phpt:1.2.2.2 Sat Sep
29 16:56:46 2007
+++ php-src/ext/standard/tests/strings/stripos_variation7.phpt Sun Sep 30
14:37:33 2007
@@ -27,7 +27,7 @@
-- With empty heredoc string --
bool(false)
-Warning: stripos(): Offset not contained in string. in %s on line %d
+Warning: stripos(): Offset not contained in string in %s on line %d
bool(false)
bool(false)
bool(false)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/stristr.phpt?r1=1.3.2.2&r2=1.3.2.2.2.1&diff_format=u
Index: php-src/ext/standard/tests/strings/stristr.phpt
diff -u php-src/ext/standard/tests/strings/stristr.phpt:1.3.2.2
php-src/ext/standard/tests/strings/stristr.phpt:1.3.2.2.2.1
--- php-src/ext/standard/tests/strings/stristr.phpt:1.3.2.2 Mon Nov 20
20:55:51 2006
+++ php-src/ext/standard/tests/strings/stristr.phpt Sun Sep 30 14:37:33 2007
@@ -24,7 +24,7 @@
Notice: Array to string conversion in %s on line %d
-Warning: stristr(): Empty delimiter. in %s on line %d
+Warning: stristr(): Empty delimiter in %s on line %d
bool(false)
bool(false)
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/strpos.phpt?r1=1.2.6.2&r2=1.2.6.2.2.1&diff_format=u
Index: php-src/ext/standard/tests/strings/strpos.phpt
diff -u php-src/ext/standard/tests/strings/strpos.phpt:1.2.6.2
php-src/ext/standard/tests/strings/strpos.phpt:1.2.6.2.2.1
--- php-src/ext/standard/tests/strings/strpos.phpt:1.2.6.2 Fri May 18
11:29:55 2007
+++ php-src/ext/standard/tests/strings/strpos.phpt Sun Sep 30 14:37:33 2007
@@ -301,7 +301,7 @@
Notice: Undefined variable: needleS in %s on line %d
-Warning: strpos(): Empty delimiter. in %s on line %d
+Warning: strpos(): Empty delimiter in %s on line %d
bool(false)
int(7)
int(7)
@@ -313,7 +313,7 @@
*** Testing error conditions ***
-Warning: strpos(): Empty delimiter. in %s on line %d
+Warning: strpos(): Empty delimiter in %s on line %d
bool(false)
Warning: Wrong parameter count for strpos() in %s on line %d
@@ -328,13 +328,13 @@
Warning: Wrong parameter count for strpos() in %s on line %d
NULL
-Warning: strpos(): Offset not contained in string. in %s on line %d
+Warning: strpos(): Offset not contained in string in %s on line %d
bool(false)
-Warning: strpos(): Offset not contained in string. in %s on line %d
+Warning: strpos(): Offset not contained in string in %s on line %d
bool(false)
-Warning: strpos(): Empty delimiter. in %s on line %d
+Warning: strpos(): Empty delimiter in %s on line %d
bool(false)
Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/strstr.phpt?r1=1.2.6.1&r2=1.2.6.1.2.1&diff_format=u
Index: php-src/ext/standard/tests/strings/strstr.phpt
diff -u php-src/ext/standard/tests/strings/strstr.phpt:1.2.6.1
php-src/ext/standard/tests/strings/strstr.phpt:1.2.6.1.2.1
--- php-src/ext/standard/tests/strings/strstr.phpt:1.2.6.1 Sat May 12
10:15:02 2007
+++ php-src/ext/standard/tests/strings/strstr.phpt Sun Sep 30 14:37:33 2007
@@ -379,7 +379,7 @@
Notice: Undefined variable: needleS in %s on line %d
-Warning: strstr(): Empty delimiter. in %s on line %d
+Warning: strstr(): Empty delimiter in %s on line %d
bool(false)
string(6) "worldS"
string(6) "worldS"
@@ -391,7 +391,7 @@
*** Testing error conditions ***
-Warning: strstr(): Empty delimiter. in %s on line %d
+Warning: strstr(): Empty delimiter in %s on line %d
bool(false)
Warning: Wrong parameter count for strstr() in %s on line %d
@@ -406,7 +406,7 @@
Warning: Wrong parameter count for strstr() in %s on line %d
NULL
-Warning: strstr(): Empty delimiter. in %s on line %d
+Warning: strstr(): Empty delimiter in %s on line %d
bool(false)
Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/substr_count_error.phpt?r1=1.1.2.2&r2=1.1.2.2.2.1&diff_format=u
Index: php-src/ext/standard/tests/strings/substr_count_error.phpt
diff -u php-src/ext/standard/tests/strings/substr_count_error.phpt:1.1.2.2
php-src/ext/standard/tests/strings/substr_count_error.phpt:1.1.2.2.2.1
--- php-src/ext/standard/tests/strings/substr_count_error.phpt:1.1.2.2 Mon Jul
16 10:59:17 2007
+++ php-src/ext/standard/tests/strings/substr_count_error.phpt Sun Sep 30
14:37:33 2007
@@ -40,26 +40,26 @@
Notice: Undefined variable: str in %s on line %d
-Warning: substr_count(): Offset should be greater than or equal to 0. in %s on
line %d
+Warning: substr_count(): Offset should be greater than or equal to 0 in %s on
line %d
bool(false)
Notice: Undefined variable: str in %s on line %d
-Warning: substr_count(): Offset value 25 exceeds string length. in %s on line
%d
+Warning: substr_count(): Offset value 25 exceeds string length in %s on line %d
bool(false)
Notice: Undefined variable: str in %s on line %d
-Warning: substr_count(): Offset value 5 exceeds string length. in %s on line %d
+Warning: substr_count(): Offset value 5 exceeds string length in %s on line %d
bool(false)
Notice: Undefined variable: str in %s on line %d
-Warning: substr_count(): Length should be greater than 0. in %s on line %d
+Warning: substr_count(): Length should be greater than 0 in %s on line %d
bool(false)
Notice: Undefined variable: str in %s on line %d
-Warning: substr_count(): Length should be greater than 0. in %s on line %d
+Warning: substr_count(): Length should be greater than 0 in %s on line %d
bool(false)
Done
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/uuencode.phpt?r1=1.1.2.2&r2=1.1.2.2.2.1&diff_format=u
Index: php-src/ext/standard/tests/strings/uuencode.phpt
diff -u php-src/ext/standard/tests/strings/uuencode.phpt:1.1.2.2
php-src/ext/standard/tests/strings/uuencode.phpt:1.1.2.2.2.1
--- php-src/ext/standard/tests/strings/uuencode.phpt:1.1.2.2 Wed Nov 15
17:27:03 2006
+++ php-src/ext/standard/tests/strings/uuencode.phpt Sun Sep 30 14:37:33 2007
@@ -35,6 +35,6 @@
"
string(22) "not very sophisticated"
-Warning: convert_uudecode(): The given parameter is not a valid uuencoded
string. in %s on line %d
+Warning: convert_uudecode(): The given parameter is not a valid uuencoded
string in %s on line %d
bool(false)
Done
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php