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:
authorLudovic Henry <luhenry@microsoft.com>2019-03-01 23:03:26 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-03-01 23:03:26 +0300
commit234daf1cf380a7766ddd9f5c40f3aac61fbc8a45 (patch)
tree55d88d444a849ab4172bec2af3ac0ee6b116fa48 /mcs/class/Mono.Runtime.Tests
parentc99fe4b4628817d9872172ff8e4b73b4f69bcf9e (diff)
[android] Fix Mono.Debugger.Soft tests with Android SDKs (#13218)
* [android] Fix Mono.Debugger.Soft tests with Android SDKs * [android] Fix connecting with LLDB * [android] Add scaffolding to run profiler tests * [android] Fix some corlib tests * [android] Fix Mono.DebuggerTests.ExceptionFilter2 * [csproj] Update project files
Diffstat (limited to 'mcs/class/Mono.Runtime.Tests')
-rw-r--r--mcs/class/Mono.Runtime.Tests/Test/JitTests.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/mcs/class/Mono.Runtime.Tests/Test/JitTests.cs b/mcs/class/Mono.Runtime.Tests/Test/JitTests.cs
index e490e9ab09a..6fe4f270eed 100644
--- a/mcs/class/Mono.Runtime.Tests/Test/JitTests.cs
+++ b/mcs/class/Mono.Runtime.Tests/Test/JitTests.cs
@@ -9,7 +9,13 @@ namespace MonoTests.Runtime {
[TestFixture]
public class JitTests {
- static string[] args = new string[] { "--exclude", "!FULLAOT", "--verbose" };
+#if MONOTOUCH
+ static string[] args = new string[] { "--verbose", "--exclude", "!FULLAOT" };
+#elif MONODROID
+ static string[] args = new string[] { "--verbose" };
+#else
+ static string[] args = new string[] { "--verbose", "--exclude", "!FULLAOT" };
+#endif
[Test]
public void Basic () {