Switch to compiler-tester
[mono.git] / mcs / tests / test-319-exe.cs
diff --git a/mcs/tests/test-319-exe.cs b/mcs/tests/test-319-exe.cs
deleted file mode 100644 (file)
index 34c9137..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-// Compiler options: -r:test-319-dll.dll
-
-using System;
-using System.Runtime.CompilerServices;
-
-// TODO: clean up in Decimal.cs
-
-public class ConstFields
-{
-       public const decimal ConstDecimal1 = 314159265358979323846m;
-        public static readonly decimal ConstDecimal2 = -314159265358979323846m;
-       public const decimal ConstDecimal3 = -3;
-        public const decimal ConstDecimal4 = 0;
-        public const decimal MaxValue = 79228162514264337593543950335m;
-        
-        // TODO: check this value
-       static readonly Decimal MaxValueDiv10 = MaxValue / 10;
-            
-        static decimal DecimalValue = -90;
-        const decimal SmallConstValue = .02M;
-            
-        static int Main ()
-        {
-            Type t = typeof (ConstFields);
-            DecimalConstantAttribute a = (DecimalConstantAttribute) t.GetField ("ConstDecimal3").GetCustomAttributes (typeof (DecimalConstantAttribute), false) [0];
-            if (a.Value != ConstDecimal3)
-                return 1;
-
-            a = (DecimalConstantAttribute) t.GetField ("ConstDecimal1").GetCustomAttributes (typeof (DecimalConstantAttribute), false) [0];
-            if (a.Value != 314159265358979323846m)
-                return 2;
-            
-            if (ConstDecimal1 != (-1) * ConstDecimal2)
-                return 3;
-            
-            if (!(SmallConstValue < 1 && SmallConstValue > 0))
-                return 4;
-
-            // THIS IS TEST TOO
-            Console.WriteLine (C.D);
-            Console.WriteLine (Decimal.One);
-            Console.WriteLine (DecimalValue);
-            Console.WriteLine (Decimal.MaxValue);
-            
-            Console.WriteLine ("Success");
-            return 0;
-        }
-}