@@ -17,7 +17,7 @@ public class EnvironmentContentTests : BaseTest
17
17
[ NonParallelizable ]
18
18
public void BuildApplicationWithMonoEnvironment ( [ Values ( "" , "Normal" , "Offline" ) ] string sequencePointsMode )
19
19
{
20
- const string supportedAbis = "armeabi-v7a;x86 " ;
20
+ const string supportedAbis = "arm64-v8a;x86_64 " ;
21
21
22
22
var lib = new XamarinAndroidLibraryProject {
23
23
ProjectName = "Library1" ,
@@ -77,7 +77,7 @@ public void BuildApplicationWithMonoEnvironment ([Values ("", "Normal", "Offline
77
77
[ Test ]
78
78
public void CheckMonoDebugIsAddedToEnvironment ( [ Values ( "" , "Normal" , "Offline" ) ] string sequencePointsMode )
79
79
{
80
- const string supportedAbis = "armeabi-v7a;x86 " ;
80
+ const string supportedAbis = "arm64-v8a;x86_64 " ;
81
81
82
82
var proj = new XamarinAndroidApplicationProject ( ) {
83
83
IsRelease = true ,
@@ -108,6 +108,10 @@ public void CheckMonoDebugIsAddedToEnvironment ([Values ("", "Normal", "Offline"
108
108
[ Test ]
109
109
public void CheckConcurrentGC ( )
110
110
{
111
+ if ( TargetRuntimeHelper . UseCoreCLR ) {
112
+ Assert . Ignore ( "Mono GC isn't supported on CoreCLR" ) ;
113
+ }
114
+
111
115
var proj = new XamarinAndroidApplicationProject ( ) {
112
116
IsRelease = true ,
113
117
} ;
@@ -160,7 +164,7 @@ public void CheckHttpClientHandlerType ()
160
164
var expectedDefaultValue = "System.Net.Http.SocketsHttpHandler, System.Net.Http" ;
161
165
var expectedUpdatedValue = "Xamarin.Android.Net.AndroidMessageHandler" ;
162
166
163
- var supportedAbis = "armeabi-v7a; arm64-v8a" ;
167
+ var supportedAbis = "arm64-v8a;x86_64 " ;
164
168
proj . SetAndroidSupportedAbis ( supportedAbis ) ;
165
169
proj . PackageReferences . Add ( new Package ( ) { Id = "System.Net.Http" , Version = "*" } ) ;
166
170
proj . MainActivity = proj . DefaultMainActivity . Replace ( "//${AFTER_ONCREATE}" , "var _ = new System.Net.Http.HttpClient ();" ) ;
0 commit comments