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
Mark said ext/date tests as 32-bit only
  • Loading branch information
hikari-no-yume committed Sep 22, 2014
commit 820a464f1d29d737d94addb207e03c236e0d8654
2 changes: 2 additions & 0 deletions ext/date/tests/bug36988.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Bug #36988 (mktime freezes on long numbers)
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
date_default_timezone_set('GMT');
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/date_sunrise_variation2.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test date_sunrise() function : usage variation - Passing unexpected values to second argument format.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : mixed date_sunrise(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/date_sunrise_variation9.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test date_sunrise() function : usage variation - Passing high positive and negative float values to time argument.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : mixed date_sunrise(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/date_sunset_variation2.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test date_sunset() function : usage variation - Passing unexpected values to second argument format.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : mixed date_sunset(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/date_sunset_variation9.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test date_sunset() function : usage variation - Passing high positive and negative float values to time argument.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : mixed date_sunset(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/getdate_variation7.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test getdate() function : usage variation - Passing high positive and negative float values to timestamp.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : array getdate([int timestamp])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/gmdate_variation14.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test gmdate() function : usage variation - Passing high positive and negetive float values to timestamp.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : string gmdate(string format [, long timestamp])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/idate_variation3.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test idate() function : usage variation - Passing higher positive and negetive float values to timestamp.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : int idate(string format [, int timestamp])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/localtime_variation3.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test localtime() function : usage variation - Passing higher positive and negetive float values to timestamp.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : array localtime([int timestamp [, bool associative_array]])
Expand Down
2 changes: 2 additions & 0 deletions ext/date/tests/strftime_variation23.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test strftime() function : usage variation - Checking large positive and negative float values to timestamp.
--SKIPIF--
<?php if (PHP_INT_SIZE != 4) echo "skip this test is for 32-bit only"; ?>
--FILE--
<?php
/* Prototype : string strftime(string format [, int timestamp])
Expand Down