File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
BenchmarkDotNet.IntegrationTests.ManualRunning
BenchmarkDotNet.IntegrationTests Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public void CanBenchmarkLocalCoreRtUsingRyuJit()
29
29
{
30
30
var config = ManualConfig . CreateEmpty ( )
31
31
. AddJob ( Job . Dry
32
- . WithRuntime ( CoreRtRuntime . CoreRt21 )
32
+ . WithRuntime ( CoreRtRuntime . CoreRt50 )
33
33
. WithToolchain (
34
34
CoreRtToolchain . CreateBuilder ( )
35
35
. UseCoreRtLocal ( IlcPath )
@@ -43,7 +43,7 @@ public void CanBenchmarkLocalCoreRtUsingCppCodeGen()
43
43
{
44
44
var config = ManualConfig . CreateEmpty ( )
45
45
. AddJob ( Job . Dry
46
- . WithRuntime ( CoreRtRuntime . CoreRt21 )
46
+ . WithRuntime ( CoreRtRuntime . CoreRt50 )
47
47
. WithToolchain (
48
48
CoreRtToolchain . CreateBuilder ( )
49
49
. UseCoreRtLocal ( IlcPath )
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ public void WhenBuildTakesMoreTimeThanTheTimeoutTheBuildIsCancelled()
26
26
27
27
var config = ManualConfig . CreateEmpty ( )
28
28
. AddJob ( Job . Dry
29
- . WithRuntime ( CoreRtRuntime . CoreRt21 )
29
+ . WithRuntime ( CoreRtRuntime . CoreRt50 )
30
30
. WithToolchain ( CoreRtToolchain . CreateBuilder ( )
31
- . UseCoreRtNuGet ( microsoftDotNetILCompilerVersion : "1 .0.0-alpha-27408-02 " ) // we test against specific version to keep this test stable
31
+ . UseCoreRtNuGet ( microsoftDotNetILCompilerVersion : "6 .0.0-alpha.1.20602.1 " ) // we test against specific version to keep this test stable
32
32
. Timeout ( timeout )
33
33
. ToToolchain ( ) ) ) ;
34
34
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public static IEnumerable<object[]> GetToolchains()
39
39
new object [ ] { Job . Default . GetToolchain ( ) } ,
40
40
new object [ ] { InProcessEmitToolchain . Instance } ,
41
41
#if ! NETFRAMEWORK
42
- // we don't want to test CoreRT twice (for .NET 4.6 and Core 2.1 ) when running the integration tests (these tests take a lot of time)
42
+ // we don't want to test CoreRT twice (for .NET 4.6 and 5.0 ) when running the integration tests (these tests take a lot of time)
43
43
// we test against specific version to keep this test stable
44
44
new object [ ] { CoreRtToolchain . CreateBuilder ( ) . UseCoreRtNuGet ( microsoftDotNetILCompilerVersion : "6.0.0-alpha.1.20602.1" ) . ToToolchain ( ) }
45
45
#endif
You can’t perform that action at this time.
0 commit comments