[runtime] Use the standard __MOBILE__ define instead of MOBILE for the mini tests.
[mono.git] / mono / mini / objects.cs
index f944713a7bc818e5c711eb7529a2af42e035cb1e..3de372c89d034a04764fadff0a7140974f750e7a 100644 (file)
@@ -26,7 +26,7 @@ using System.Runtime.CompilerServices;
  * the IL code looks.
  */
 
-#if MOBILE
+#if __MOBILE__
 namespace ObjectTests
 {
 #endif
@@ -119,7 +119,7 @@ struct Gamma {
 
 class Tests {
 
-#if !MOBILE
+#if !__MOBILE__
        public static int Main (string[] args) {
                return TestDriver.RunTests (typeof (Tests), args);
        }
@@ -1688,6 +1688,6 @@ ncells ) {
        }
 }
 
-#if MOBILE
+#if __MOBILE__
 }
 #endif