summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_chunk_variation5.phpt
diff options
context:
space:
mode:
authorSteph Fox <sfox@php.net>2008-05-26 23:36:10 +0000
committerSteph Fox <sfox@php.net>2008-05-26 23:36:10 +0000
commit833f4150a1b803ad36d4c5bf97561d7958538aec (patch)
treece0ec413cea57a86cec658c3317d60a69f8adf1a /ext/standard/tests/array/array_chunk_variation5.phpt
parent10c04aca384b8bc31412d36f05ba29f11192a082 (diff)
downloadphp-git-833f4150a1b803ad36d4c5bf97561d7958538aec.tar.gz
- killed off UEXPECT
- could someone please fix var_export2.phpt? NUL is corrupted, can't fix here
Diffstat (limited to 'ext/standard/tests/array/array_chunk_variation5.phpt')
-rw-r--r--ext/standard/tests/array/array_chunk_variation5.phpt113
1 files changed, 0 insertions, 113 deletions
diff --git a/ext/standard/tests/array/array_chunk_variation5.phpt b/ext/standard/tests/array/array_chunk_variation5.phpt
index 730ef6aa87..8d36092822 100644
--- a/ext/standard/tests/array/array_chunk_variation5.phpt
+++ b/ext/standard/tests/array/array_chunk_variation5.phpt
@@ -146,116 +146,3 @@ array(3) {
}
}
Done
---UEXPECTF--
-*** Testing array_chunk() : usage variations ***
-
--- Testing array_chunk() when size = -1 --
-
-Warning: array_chunk(): Size parameter expected to be greater than 0 in %s on line %d
-NULL
-
-Warning: array_chunk(): Size parameter expected to be greater than 0 in %s on line %d
-NULL
-
-Warning: array_chunk(): Size parameter expected to be greater than 0 in %s on line %d
-NULL
-
--- Testing array_chunk() when size = 4 --
-array(1) {
- [0]=>
- array(3) {
- [0]=>
- int(1)
- [1]=>
- int(2)
- [2]=>
- int(3)
- }
-}
-array(1) {
- [0]=>
- array(3) {
- [0]=>
- int(1)
- [1]=>
- int(2)
- [2]=>
- int(3)
- }
-}
-array(1) {
- [0]=>
- array(3) {
- [0]=>
- int(1)
- [1]=>
- int(2)
- [2]=>
- int(3)
- }
-}
-
--- Testing array_chunk() when size = 0 --
-
-Warning: array_chunk(): Size parameter expected to be greater than 0 in %s on line %d
-NULL
-
-Warning: array_chunk(): Size parameter expected to be greater than 0 in %s on line %d
-NULL
-
-Warning: array_chunk(): Size parameter expected to be greater than 0 in %s on line %d
-NULL
-
--- Testing array_chunk() when size = 1.5 --
-array(3) {
- [0]=>
- array(1) {
- [0]=>
- int(1)
- }
- [1]=>
- array(1) {
- [0]=>
- int(2)
- }
- [2]=>
- array(1) {
- [0]=>
- int(3)
- }
-}
-array(3) {
- [0]=>
- array(1) {
- [0]=>
- int(1)
- }
- [1]=>
- array(1) {
- [1]=>
- int(2)
- }
- [2]=>
- array(1) {
- [2]=>
- int(3)
- }
-}
-array(3) {
- [0]=>
- array(1) {
- [0]=>
- int(1)
- }
- [1]=>
- array(1) {
- [0]=>
- int(2)
- }
- [2]=>
- array(1) {
- [0]=>
- int(3)
- }
-}
-Done