diff options
author | Pierre Joye <pajoye@php.net> | 2009-03-31 17:59:19 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-03-31 17:59:19 +0000 |
commit | a35ba550651ecc5c4947386384ca381d7de4421f (patch) | |
tree | 6059b8d21ce63e464797a0fa9f6b298d2f991d5f | |
parent | 4a40de7e792c83b8b529b59904161267843f8511 (diff) | |
download | php-git-a35ba550651ecc5c4947386384ca381d7de4421f.tar.gz |
- remove last test for MAX_INT, did not work on x64 and this case is
covered by bug47745.phpt
-rwxr-xr-x | ext/filter/tests/046.phpt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/filter/tests/046.phpt b/ext/filter/tests/046.phpt index ef26e17fbf..8133289461 100755 --- a/ext/filter/tests/046.phpt +++ b/ext/filter/tests/046.phpt @@ -12,12 +12,8 @@ var_dump(filter_var($s, FILTER_VALIDATE_INT)); $s = sprintf("%d", -PHP_INT_MAX); var_dump(is_long(filter_var($s, FILTER_VALIDATE_INT))); - -$s = sprintf("%.0f", ~(PHP_INT_MAX)-1); -var_dump(filter_var($s, FILTER_VALIDATE_INT)); ?> --EXPECT-- bool(true) bool(false) bool(true) -bool(false) |