[runtime] Use the standard __MOBILE__ define instead of MOBILE for the mini tests.
[mono.git] / mono / mini / gshared.cs
index f5ee9bbbf6069effddeddeeed2067809a3058226..c4c6a1ff19654120bb1f9d2c669758082f64eb56 100644 (file)
@@ -48,13 +48,13 @@ class GFoo3<T> {
 
 // FIXME: Add mixed ref/noref tests, i.e. Dictionary<string, int>
 
-#if MOBILE
+#if __MOBILE__
 public class GSharedTests
 #else
 public class Tests
 #endif
 {
-#if !MOBILE
+#if !__MOBILE__
        public static int Main (String[] args) {
                return TestDriver.RunTests (typeof (Tests), args);
        }
@@ -1735,7 +1735,7 @@ public class MobileServiceCollection<TTable, TCol>
        }
 }
 
-#if !MOBILE
+#if !__MOBILE__
 public class GSharedTests : Tests {
 }
 #endif