Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-11-24 04:33:29 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-11-24 19:40:54 +0300
commit9f5b8c4cf2b7980ea5dddef62b36bb1910b53ff9 (patch)
tree7db8aa9f98bd8a5c1242194d660ae84ee630bcce /mcs/class/System/Test
parent1d6abe9ecaa51d39c01a9e4070e8bdd15b61593f (diff)
Rename the mobile_static profile to aot_only
We decided it's a better name since we're using the profile to test FullAOT scenarios on desktop (as opposed to the mobile profiles). While doing the rename I saw that a lot of the #ifdefs were using MOBILE_STATIC even though the code should actually be included/excluded in all FullAOT scenarios, e.g. System.Reflection.Emit. I replaced those cases with FULL_AOT_RUNTIME instead. For cases where code is specific to this profile, I added a new AOT_ONLY_DESKTOP define.
Diffstat (limited to 'mcs/class/System/Test')
-rw-r--r--mcs/class/System/Test/System.Diagnostics/FileVersionInfoTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/Test/System.Diagnostics/FileVersionInfoTest.cs b/mcs/class/System/Test/System.Diagnostics/FileVersionInfoTest.cs
index b747e0dd016..815bbb85c45 100644
--- a/mcs/class/System/Test/System.Diagnostics/FileVersionInfoTest.cs
+++ b/mcs/class/System/Test/System.Diagnostics/FileVersionInfoTest.cs
@@ -108,7 +108,7 @@ namespace MonoTests.System.Diagnostics
Assert.IsNull (fvi.SpecialBuild, "#27");
}
-#if !MONOTOUCH && !MOBILE_STATIC
+#if !MONOTOUCH && !FULL_AOT_RUNTIME
[Test]
public void GetVersionInfo_NoNativeResources ()
{