File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
tests/BenchmarkDotNet.IntegrationTests Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 33using System . Linq ;
44using BenchmarkDotNet . Attributes ;
55using BenchmarkDotNet . Configs ;
6+ using BenchmarkDotNet . Detectors ;
67using BenchmarkDotNet . Environments ;
78using BenchmarkDotNet . IntegrationTests . Diagnosers ;
89using BenchmarkDotNet . Jobs ;
@@ -28,6 +29,12 @@ public class WasmTests(ITestOutputHelper output) : BenchmarkTestExecutor(output)
2829 {
2930 private ManualConfig GetConfig ( )
3031 {
32+ // Test fails on Linux non-x64.
33+ if ( OsDetector . IsLinux ( ) && RuntimeInformation . GetCurrentPlatform ( ) != Platform . X64 )
34+ {
35+ return ;
36+ }
37+
3138 var dotnetVersion = "net8.0" ;
3239 var logger = new OutputLogger ( Output ) ;
3340 var netCoreAppSettings = new NetCoreAppSettings ( dotnetVersion , null , "Wasm" ) ;
You can’t perform that action at this time.
0 commit comments