1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00

Test case for bug #25665

This commit is contained in:
foobar
2003-09-26 09:55:56 +00:00
parent 075e66cc08
commit ef1c2d59a4

View File

@@ -0,0 +1,11 @@
--TEST--
Bug #25565 (var_dump () hangs on Nan and INF)
--FILE--
<?php
set_time_limit(5);
var_dump(acos(1.01));
var_dump(log(0));
?>
--EXPECT--
float(NAN)
float(-INF)