From 8169cc498b92e3223b9b5a416b22f0c4b4bc05fb Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 31 Mar 2009 18:00:33 +0000 Subject: [PATCH] - remove last test for MAX_INT, did not work on x64 and this case is covered by bug47745.phpt --- ext/filter/tests/046.phpt | 4 ---- 1 file changed, 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) -- 2.50.1