Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / mini / basic-math.cs
index 9a1fcb9406cd97e0c3887220e7f1df61fdef5600..a5aeb9cc8a9eac5d8e28873b5f53601acff087bd 100644 (file)
@@ -257,6 +257,14 @@ class Tests
                return 0;
        }
 
+       public static int test_0_float_abs () {
+               float f = -1.0f;
+
+               if (Math.Abs (f) != 1.0f)
+                       return 1;
+               return 0;
+       }
+
        public static int test_0_round () {
                if (Math.Round (5.0) != 5.0)
                        return 1;