Merge pull request #3387 from xmcclure/test-suite-bump
[mono.git] / mono / mini / basic-math.cs
index d2fa1ede9bc9317e245a730a233024d36f6bc81c..9a1fcb9406cd97e0c3887220e7f1df61fdef5600 100644 (file)
@@ -23,11 +23,18 @@ using System.Reflection;
  * the IL code looks.
  */
 
-class Tests {
-
-       public static int Main () {
-               return TestDriver.RunTests (typeof (Tests));
+#if __MOBILE__
+class MathTests
+#else
+class Tests
+#endif
+{
+
+#if !__MOBILE__
+       public static int Main (string[] args) {
+               return TestDriver.RunTests (typeof (Tests), args);
        }
+#endif
        
        public static int test_0_sin_precision () {
                double d1 = Math.Sin (1);