Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
bb55397
Make zpp fail if NaN passed for int, or out-of-range float for non-ca…
hikari-no-yume Sep 22, 2014
25eb496
Fixed broken tests
hikari-no-yume Sep 22, 2014
a401db2
Fixed ext/date tests broken by zpp error on overflow
hikari-no-yume Sep 22, 2014
820a464
Mark said ext/date tests as 32-bit only
hikari-no-yume Sep 22, 2014
71566b9
Merge branch 'master' into zppFailOnOverflow
hikari-no-yume Nov 1, 2014
d22f3b1
Merge branch 'master' into zppFailOnOverflow
hikari-no-yume Nov 8, 2014
b707793
Fixed some 32-bit tests
hikari-no-yume Nov 9, 2014
26bb809
Fixed more 32-bit tests
hikari-no-yume Nov 9, 2014
5b52fb5
Marked tests as 32-bit
hikari-no-yume Nov 9, 2014
344eba1
Fixes iconv tests
ralt Nov 9, 2014
62f6c3c
Fixes posix tests
ralt Nov 9, 2014
df1b722
Fixes simplexml test
ralt Nov 9, 2014
cc35388
Merge branch 'zppFailOnOverflow' of github.com:Ralt/php-src into zppF…
hikari-no-yume Nov 11, 2014
f574ad1
skip tests on 32-bit
hikari-no-yume Nov 28, 2014
0885805
skip posix 32-bit
hikari-no-yume Nov 28, 2014
55e1c03
skip simplexml
hikari-no-yume Nov 28, 2014
ebaa423
Skip buncha tests on 32-bit
hikari-no-yume Nov 29, 2014
65c8edd
Fix more 32-bit tests
hikari-no-yume Nov 29, 2014
01554bf
Merge branch 'master' into zppFailOnOverflow
hikari-no-yume Nov 29, 2014
d19ce51
Fixed copy-and-paste error
hikari-no-yume Nov 29, 2014
f90b877
Refactor ZEND_LONG_MAX/MIN checks into ZEND_DOUBLE_FITS_LONG()
hikari-no-yume Nov 29, 2014
175844c
Fixed gd test
hikari-no-yume Nov 29, 2014
d5afeef
Fix MySQLi tests
hikari-no-yume Nov 29, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes iconv tests
  • Loading branch information
ralt committed Nov 9, 2014
commit 344eba1be8d211be1cc71c530e44bea14f3b7df9
20 changes: 3 additions & 17 deletions ext/iconv/tests/iconv_mime_decode_headers_variation2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -234,23 +234,9 @@ array(5) {
}

-- Iteration 7 --
array(5) {
["Subject"]=>
string(13) "A Sample Test"
["To"]=>
string(19) "example@example.com"
["Date"]=>
string(30) "Thu, 1 Jan 1970 00:00:00 +0000"
["Message-Id"]=>
string(21) "<example@example.com>"
["Received"]=>
array(2) {
[0]=>
string(204) "from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com>; Thu, 1 Jan 1970 00:00:00 +0000 (UTC) (envelope-from example-return-0000-example=example.com@example.com)"
[1]=>
string(57) "(qmail 0 invoked by uid 65534); 1 Thu 2003 00:00:00 +0000"
}
}

Warning: iconv_mime_decode_headers() expects parameter 2 to be long, double given in %s on line %d
bool(false)

-- Iteration 8 --
array(5) {
Expand Down
20 changes: 3 additions & 17 deletions ext/iconv/tests/iconv_mime_decode_headers_variation3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -237,23 +237,9 @@ array(5) {
}

-- Iteration 7 --
array(5) {
["Subject"]=>
string(13) "A Sample Test"
["To"]=>
string(19) "example@example.com"
["Date"]=>
string(30) "Thu, 1 Jan 1970 00:00:00 +0000"
["Message-Id"]=>
string(21) "<example@example.com>"
["Received"]=>
array(2) {
[0]=>
string(204) "from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com>; Thu, 1 Jan 1970 00:00:00 +0000 (UTC) (envelope-from example-return-0000-example=example.com@example.com)"
[1]=>
string(57) "(qmail 0 invoked by uid 65534); 1 Thu 2003 00:00:00 +0000"
}
}

Warning: iconv_mime_decode_headers() expects parameter 2 to be long, double given in %s on line %d
bool(false)

-- Iteration 8 --
array(5) {
Expand Down
4 changes: 3 additions & 1 deletion ext/iconv/tests/iconv_mime_decode_variation2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ string(52) "5375626a6563743a205072c3bc66756e67205072c3bc66756e67"
string(52) "5375626a6563743a205072c3bc66756e67205072c3bc66756e67"

-- Iteration 7 --
string(52) "5375626a6563743a205072c3bc66756e67205072c3bc66756e67"

Warning: iconv_mime_decode() expects parameter 2 to be long, double given in %s on line %d
string(0) ""

-- Iteration 8 --
string(52) "5375626a6563743a205072c3bc66756e67205072c3bc66756e67"
Expand Down
2 changes: 1 addition & 1 deletion ext/iconv/tests/iconv_strpos_variation3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ bool(false)

-- Iteration 7 --

Warning: iconv_strpos(): Offset not contained in string. in %s on line %d
Warning: iconv_strpos() expects parameter 3 to be long, double given in %s on line %d
bool(false)

-- Iteration 8 --
Expand Down