Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
<ItemGroup>
<ProjectReference Include="..\..\src\BenchmarkDotNet\BenchmarkDotNet.csproj" />
<ProjectReference Include="..\..\src\BenchmarkDotNet.Diagnostics.Windows\BenchmarkDotNet.Diagnostics.Windows.csproj" />
<ProjectReference Include="..\..\src\BenchmarkDotNet.Diagnostics.dotTrace\BenchmarkDotNet.Diagnostics.dotTrace.csproj" />
<ProjectReference Include="..\..\src\BenchmarkDotNet.Diagnostics.dotMemory\BenchmarkDotNet.Diagnostics.dotMemory.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using Xunit;
using Xunit.Abstractions;

namespace BenchmarkDotNet.IntegrationTests
namespace BenchmarkDotNet.IntegrationTests.ManualRunning
{
public class DotMemoryTests : BenchmarkTestExecutor
{
Expand All @@ -30,8 +30,7 @@ public void DotMemorySmokeTest()
var config = new ManualConfig().AddJob(
[
Job.Dry.WithId("ExternalProcess"),
// TODO: Add InProcessEmitToolchain job when flaky test issue is resolved https://github.com/dotnet/BenchmarkDotNet/issues/2950
//Job.Dry.WithToolchain(InProcessEmitToolchain.Default).WithId("InProcess"),
Job.Dry.WithToolchain(InProcessEmitToolchain.Default).WithId("InProcess"),
]
);
string snapshotDirectory = Path.Combine(Directory.GetCurrentDirectory(), "BenchmarkDotNet.Artifacts", "snapshots");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using Xunit;
using Xunit.Abstractions;

namespace BenchmarkDotNet.IntegrationTests
namespace BenchmarkDotNet.IntegrationTests.ManualRunning
{
public class DotTraceTests : BenchmarkTestExecutor
{
Expand All @@ -29,9 +29,8 @@ public void DotTraceSmokeTest()

var config = new ManualConfig().AddJob(
[
Job.Dry.WithId("ExternalProcess")
// TODO: Add InProcessEmitToolchain job when flaky test issue is resolved https://github.com/dotnet/BenchmarkDotNet/issues/2950
// Job.Dry.WithToolchain(InProcessEmitToolchain.Default).WithId("InProcess")
Job.Dry.WithId("ExternalProcess"),
Job.Dry.WithToolchain(InProcessEmitToolchain.Default).WithId("InProcess")
]
);
string snapshotDirectory = Path.Combine(Directory.GetCurrentDirectory(), "BenchmarkDotNet.Artifacts", "snapshots");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
<ProjectReference Include="..\BenchmarkDotNet.IntegrationTests.Static\BenchmarkDotNet.IntegrationTests.Static.csproj" />
<ProjectReference Include="..\BenchmarkDotNet.Tests\BenchmarkDotNet.Tests.csproj" />
<ProjectReference Include="..\..\src\BenchmarkDotNet\BenchmarkDotNet.csproj" />
<ProjectReference Include="..\..\src\BenchmarkDotNet.Diagnostics.dotTrace\BenchmarkDotNet.Diagnostics.dotTrace.csproj" />
<ProjectReference Include="..\..\src\BenchmarkDotNet.Diagnostics.dotMemory\BenchmarkDotNet.Diagnostics.dotMemory.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
Expand Down