Skip to content

Commit

Permalink
#22 join results
Browse files Browse the repository at this point in the history
  • Loading branch information
WingZer0o committed Oct 12, 2024
1 parent 1eca8ba commit f80443d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions cas-dotnet-benchmarks/Program.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
using BenchmarkDotNet.Running;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Running;
using cas_dotnet_benchmarks;
using cas_dotnet_benchmarks.PasswordHashers;

var config = ManualConfig.Create(DefaultConfig.Instance)
.With(ConfigOptions.JoinSummary)
.With(ConfigOptions.DisableLogFile);

BenchmarkRunner.Run(new[]{
BenchmarkConverter.TypeToBenchmarks( typeof(PasswordHasherBenchmarks)),
BenchmarkConverter.TypeToBenchmarks( typeof(BCryptBenchmark))
BenchmarkConverter.TypeToBenchmarks( typeof(PasswordHasherBenchmarks), config),
BenchmarkConverter.TypeToBenchmarks( typeof(BCryptBenchmark), config)
});

0 comments on commit f80443d

Please sign in to comment.