summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_push_variation6.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/array_push_variation6.phpt')
-rw-r--r--ext/standard/tests/array/array_push_variation6.phpt38
1 files changed, 9 insertions, 29 deletions
diff --git a/ext/standard/tests/array/array_push_variation6.phpt b/ext/standard/tests/array/array_push_variation6.phpt
index b8cce79821..610e4efaa0 100644
--- a/ext/standard/tests/array/array_push_variation6.phpt
+++ b/ext/standard/tests/array/array_push_variation6.phpt
@@ -31,18 +31,6 @@ $inputs = array(
-2345 => 'negative',
),
- // float data
-/*2*/ 'float' => array(
- 10.5 => 'positive',
- -10.5 => 'negative',
- .5 => 'half',
- ),
-
- 'extreme floats' => array(
- 12.3456789000e10 => 'large',
- 12.3456789000E-10 => 'small',
- ),
-
// null data
/*3*/ 'null uppercase' => array(
NULL => 'null 1',
@@ -107,47 +95,39 @@ echo "Done";
Before : int(4)
After : int(5)
--- Iteration 2 : float data --
-Before : int(3)
-After : int(4)
-
--- Iteration 3 : extreme floats data --
-Before : int(2)
-After : int(3)
-
--- Iteration 4 : null uppercase data --
+-- Iteration 2 : null uppercase data --
Before : int(1)
After : int(2)
--- Iteration 5 : null lowercase data --
+-- Iteration 3 : null lowercase data --
Before : int(1)
After : int(2)
--- Iteration 6 : bool lowercase data --
+-- Iteration 4 : bool lowercase data --
Before : int(2)
After : int(3)
--- Iteration 7 : bool uppercase data --
+-- Iteration 5 : bool uppercase data --
Before : int(2)
After : int(3)
--- Iteration 8 : empty double quotes data --
+-- Iteration 6 : empty double quotes data --
Before : int(1)
After : int(2)
--- Iteration 9 : empty single quotes data --
+-- Iteration 7 : empty single quotes data --
Before : int(1)
After : int(2)
--- Iteration 10 : string data --
+-- Iteration 8 : string data --
Before : int(3)
After : int(4)
--- Iteration 11 : undefined data --
+-- Iteration 9 : undefined data --
Before : int(1)
After : int(2)
--- Iteration 12 : unset data --
+-- Iteration 10 : unset data --
Before : int(1)
After : int(2)
Done