[runtime] Use the standard __MOBILE__ define instead of MOBILE for the mini tests.
[mono.git] / mono / mini / basic.cs
index 477af333e9b4a8401a8b6ec5ab4e7646e6044ac3..4cf0e75f5d9cb07ec0ea64bd42d800d95bc4a373 100644 (file)
@@ -23,14 +23,14 @@ using System.Reflection;
  * the IL code looks.
  */
 
-#if MOBILE
+#if __MOBILE__
 class BasicTests
 #else
 class Tests
 #endif
 {
 
-#if !MOBILE
+#if !__MOBILE__
        public static int Main (string[] args) {
                return TestDriver.RunTests (typeof (Tests), args);
        }