summaryrefslogtreecommitdiff
path: root/ext/standard
diff options
context:
space:
mode:
authorRobin Fernandes <robinf@php.net>2008-04-22 15:31:56 +0000
committerRobin Fernandes <robinf@php.net>2008-04-22 15:31:56 +0000
commit1d943ee85e4db16f8c31972fbb0b63adcac740aa (patch)
treeac85fdf340f5da96b06e79db0a44c5410dd54c36 /ext/standard
parent5c605854b8275aecfc84cf64e8ff685bfef67e51 (diff)
downloadphp-git-1d943ee85e4db16f8c31972fbb0b63adcac740aa.tar.gz
Fix some ereg tests for 64bit platforms.
Diffstat (limited to 'ext/standard')
-rw-r--r--ext/standard/tests/reg/ereg_replace_variation_002.phpt2
-rw-r--r--ext/standard/tests/reg/eregi_replace_variation_002.phpt2
-rw-r--r--ext/standard/tests/reg/split_variation_003.phpt22
-rw-r--r--ext/standard/tests/reg/spliti_variation_003.phpt22
4 files changed, 18 insertions, 30 deletions
diff --git a/ext/standard/tests/reg/ereg_replace_variation_002.phpt b/ext/standard/tests/reg/ereg_replace_variation_002.phpt
index 3a4f3c20ed..bd55dbcde4 100644
--- a/ext/standard/tests/reg/ereg_replace_variation_002.phpt
+++ b/ext/standard/tests/reg/ereg_replace_variation_002.phpt
@@ -103,7 +103,7 @@ Arg value -10.5
string(8) "h%F6o%21"
Arg value 101234567000
-string(6) "hXo%21"
+string(%d) "h%so%21"
Arg value 1.07654321E-9
string(5) "ho%21"
diff --git a/ext/standard/tests/reg/eregi_replace_variation_002.phpt b/ext/standard/tests/reg/eregi_replace_variation_002.phpt
index 3c52d07c1c..786de9978a 100644
--- a/ext/standard/tests/reg/eregi_replace_variation_002.phpt
+++ b/ext/standard/tests/reg/eregi_replace_variation_002.phpt
@@ -103,7 +103,7 @@ Arg value -10.5
string(8) "h%F6o%21"
Arg value 101234567000
-string(6) "hXo%21"
+string(%d) "h%so%21"
Arg value 1.07654321E-9
string(5) "ho%21"
diff --git a/ext/standard/tests/reg/split_variation_003.phpt b/ext/standard/tests/reg/split_variation_003.phpt
index 65b7fa02f2..7686c08868 100644
--- a/ext/standard/tests/reg/split_variation_003.phpt
+++ b/ext/standard/tests/reg/split_variation_003.phpt
@@ -9,7 +9,10 @@ Test split() function : usage variations - unexpected type for arg 3
*/
function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
- echo "Error: $err_no - $err_msg, $filename($linenum)\n";
+ if (error_reporting() != 0) {
+ // report non-silenced errors
+ echo "Error: $err_no - $err_msg, $filename($linenum)\n";
+ }
}
set_error_handler('test_error_handler');
echo "*** Testing split() : usage variations ***\n";
@@ -28,7 +31,6 @@ $values = array(
// float data
10.5,
-10.5,
- 10.1234567e10,
10.7654321E-10,
.5,
@@ -61,10 +63,10 @@ $values = array(
new stdclass(),
// undefined data
- $undefined_var,
+ @$undefined_var,
// unset data
- $unset_var,
+ @$unset_var,
);
// loop through each element of the array for limit
@@ -78,8 +80,6 @@ echo "Done";
?>
--EXPECTF--
*** Testing split() : usage variations ***
-Error: 8 - Undefined variable: undefined_var, %s(61)
-Error: 8 - Undefined variable: unset_var, %s(64)
Arg value 10.5
array(5) {
@@ -101,12 +101,6 @@ array(1) {
string(9) "1 2 3 4 5"
}
-Arg value 101234567000
-array(1) {
- [0]=>
- string(9) "1 2 3 4 5"
-}
-
Arg value 1.07654321E-9
array(1) {
[0]=>
@@ -208,10 +202,10 @@ array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
-Error: 4096 - Object of class stdClass could not be converted to string, %s(70)
+Error: 4096 - Object of class stdClass could not be converted to string, %s(72)
Arg value
-Error: 8 - Object of class stdClass could not be converted to int, %s(71)
+Error: 8 - Object of class stdClass could not be converted to int, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
diff --git a/ext/standard/tests/reg/spliti_variation_003.phpt b/ext/standard/tests/reg/spliti_variation_003.phpt
index 4a2a689f5a..e6c8f10b50 100644
--- a/ext/standard/tests/reg/spliti_variation_003.phpt
+++ b/ext/standard/tests/reg/spliti_variation_003.phpt
@@ -9,7 +9,10 @@ Test spliti() function : usage variations - unexpected type for arg 3
*/
function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
- echo "Error: $err_no - $err_msg, $filename($linenum)\n";
+ if (error_reporting() != 0) {
+ // report non-silenced errors
+ echo "Error: $err_no - $err_msg, $filename($linenum)\n";
+ }
}
set_error_handler('test_error_handler');
echo "*** Testing spliti() : usage variations ***\n";
@@ -28,7 +31,6 @@ $values = array(
// float data
10.5,
-10.5,
- 10.1234567e10,
10.7654321E-10,
.5,
@@ -61,10 +63,10 @@ $values = array(
new stdclass(),
// undefined data
- $undefined_var,
+ @$undefined_var,
// unset data
- $unset_var,
+ @$unset_var,
);
// loop through each element of the array for limit
@@ -78,8 +80,6 @@ echo "Done";
?>
--EXPECTF--
*** Testing spliti() : usage variations ***
-Error: 8 - Undefined variable: undefined_var, %s(61)
-Error: 8 - Undefined variable: unset_var, %s(64)
Arg value 10.5
array(5) {
@@ -101,12 +101,6 @@ array(1) {
string(9) "1 2 3 4 5"
}
-Arg value 101234567000
-array(1) {
- [0]=>
- string(9) "1 2 3 4 5"
-}
-
Arg value 1.07654321E-9
array(1) {
[0]=>
@@ -208,10 +202,10 @@ array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
-Error: 4096 - Object of class stdClass could not be converted to string, %s(70)
+Error: 4096 - Object of class stdClass could not be converted to string, %s(72)
Arg value
-Error: 8 - Object of class stdClass could not be converted to int, %s(71)
+Error: 8 - Object of class stdClass could not be converted to int, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"