2005-12-13 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Mon, 12 Dec 2005 23:29:37 +0000 (23:29 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Mon, 12 Dec 2005 23:29:37 +0000 (23:29 -0000)
* DoubleTest.cs : added test for bug #75228.

svn path=/trunk/mcs/; revision=54264

mcs/class/corlib/Test/System/ChangeLog
mcs/class/corlib/Test/System/DoubleTest.cs

index 58e16b0fd28d8c5b08ddba3a4f3d5e891720f474..456f7d945f3d72a32f44174697b165ca86963a1d 100644 (file)
@@ -1,3 +1,7 @@
+2005-12-13  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DoubleTest.cs : added test for bug #75228.
+
 2005-12-09  Raja R Harinath  <rharinath@novell.com>
 
        * TypeTest.cs (TypeParameterIsNotGeneric): New.  Test invariants
index 35eb2ee044207a3b3d16e86f7c1a60db466503d2..12177f224f76aa27809b4708de173e8e2aa5daf5 100644 (file)
@@ -34,6 +34,7 @@ namespace MonoTests.System {
                        "4.9406564584124650e-324",
                        "6.28318530717958647692528676655900577",
                        "1e-05",
+                       "6363883797383966.2933E-726",
                };
                
                private double[] double_values = {
@@ -42,7 +43,8 @@ namespace MonoTests.System {
                        1.7976931348623157e308, 1.7976931348623157e308, -1.7976931348623157e308,
                        4.9406564584124650e-324,
                        6.28318530717958647692528676655900577,
-                       1e-05
+                       1e-05,
+                       0,
                };
 
                [SetUp]