php-src/ext/standard/tests/math/bug25665.phpt

12 lines
166 B
Plaintext
Raw Normal View History

2003-09-26 09:55:56 +00:00
--TEST--
2003-09-26 09:56:24 +00:00
Bug #25665 (var_dump () hangs on Nan and INF)
2003-09-26 09:55:56 +00:00
--FILE--
<?php
set_time_limit(5);
var_dump(acos(1.01));
var_dump(log(0));
?>
--EXPECT--
float(NAN)
float(-INF)