File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
tests/BenchmarkDotNet.IntegrationTests Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 9
9
using BenchmarkDotNet . Columns ;
10
10
using BenchmarkDotNet . Configs ;
11
11
using BenchmarkDotNet . Diagnosers ;
12
+ using BenchmarkDotNet . Environments ;
12
13
using BenchmarkDotNet . Extensions ;
13
14
using BenchmarkDotNet . IntegrationTests . Xunit ;
14
15
using BenchmarkDotNet . Jobs ;
@@ -69,6 +70,8 @@ public void MemoryDiagnoserSupportsNativeAOT()
69
70
{
70
71
if ( ContinuousIntegration . IsAppVeyorOnWindows ( ) ) // too time consuming for AppVeyor (1h limit)
71
72
return ;
73
+ if ( RuntimeInformation . GetCurrentPlatform ( ) == Platform . Arm64 && RuntimeInformation . IsMacOSX ( ) )
74
+ return ; // Native compilation does not support targeting osx-arm64 yet. https://github.com/dotnet/corert/issues/4589
72
75
73
76
MemoryDiagnoserIsAccurate (
74
77
NativeAotToolchain . CreateBuilder ( )
You can’t perform that action at this time.
0 commit comments