File tree Expand file tree Collapse file tree
tests/BenchmarkDotNet.IntegrationTests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99using BenchmarkDotNet . Running ;
1010using BenchmarkDotNet . Tests . Loggers ;
1111using BenchmarkDotNet . Toolchains ;
12+ using BenchmarkDotNet . Toolchains . InProcess . Emit ;
1213using BenchmarkDotNet . Toolchains . NativeAot ;
13- using System ;
14- using System . Collections . Generic ;
15- using System . Linq ;
16- using System . Threading ;
1714using BenchmarkDotNet . Detectors ;
1815using BenchmarkDotNet . IntegrationTests . Xunit ;
19- using BenchmarkDotNet . Portability ;
2016using Xunit ;
2117using Xunit . Abstractions ;
2218
@@ -30,15 +26,15 @@ public class ThreadingDiagnoserTests
3026
3127 public static IEnumerable < object [ ] > GetToolchains ( )
3228 {
29+ yield return new object [ ] { InProcessEmitToolchain . Default } ;
30+
3331 yield return new object [ ] { Job . Default . GetToolchain ( ) } ;
3432
3533 if ( ! ContinuousIntegration . IsGitHubActionsOnWindows ( ) // no native dependencies
3634 && ! OsDetector . IsMacOS ( ) ) // currently not supported
3735 {
3836 yield return new object [ ] { NativeAotToolchain . Net80 } ;
3937 }
40- // TODO: Support InProcessEmitToolchain.Instance
41- // yield return new object[] { InProcessEmitToolchain.Instance };
4238 }
4339
4440 [ Theory , MemberData ( nameof ( GetToolchains ) , DisableDiscoveryEnumeration = true ) ]
You can’t perform that action at this time.
0 commit comments