]> granicus.if.org Git - php/commitdiff
This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.
authorSVN Migration <svn@php.net>
Fri, 26 Sep 2003 09:56:25 +0000 (09:56 +0000)
committerSVN Migration <svn@php.net>
Fri, 26 Sep 2003 09:56:25 +0000 (09:56 +0000)
ext/standard/tests/math/bug25665.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/math/bug25665.phpt b/ext/standard/tests/math/bug25665.phpt
new file mode 100644 (file)
index 0000000..b7875db
--- /dev/null
@@ -0,0 +1,11 @@
+--TEST--
+Bug #25665 (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)