X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fskip.inc;h=f273c91068d2cb8d0c8942c95fa032c90fe12c10;hb=bb1f32fd5d06b9b9ace6517c177b0fe58c9ff57c;hp=09da16948c3a1adc24782a301573391803e8e6ca;hpb=62fd5b5f1e43cf04e0467a48578826726cfe5821;p=m6w6%2Fext-http diff --git a/tests/skip.inc b/tests/skip.inc index 09da169..f273c91 100644 --- a/tests/skip.inc +++ b/tests/skip.inc @@ -3,7 +3,7 @@ defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w')); function skipif($if, $skip) { if ($if) { fprintf(STDOUT, "skip $skip"); exit(); }} function checkcgi() { skipif(!strncasecmp('CLI', PHP_SAPI, 3), 'need CGI SAPI'); } function checkext($ext) { skipif(!extension_loaded($ext), "need ext/$ext"); } -function checkver($ver) { skipif($ver > (int) PHP_VERSION, "need PHP v$ver"); } +function checkver($ver) { skipif(round($ver,1) > round((double) PHP_VERSION,1), "need PHP v$ver"); } function checkurl($url) { skipif(!@fsockopen($url, 80), "$url not responsive"); } function checkcls($cls) { skipif(!class_exists($cls), "need class $cls"); } checkext('http');