From 39db0ed4986a275042c4157044cc046518cef199 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Fri, 12 Jan 2024 17:09:30 -0800 Subject: [PATCH] Speed up the tests slightly. Fixes #114 --- test/test_benchmark_ips.rb | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/test_benchmark_ips.rb b/test/test_benchmark_ips.rb index 20d57ef..fdaf417 100644 --- a/test/test_benchmark_ips.rb +++ b/test/test_benchmark_ips.rb @@ -36,6 +36,8 @@ def test_warmup0 def test_output Benchmark.ips(1) do |x| + x.warmup = 0 + x.time = 0.1 x.report("operation") { 100 * 100 } end @@ -129,14 +131,10 @@ def test_ips_alternate_config def test_ips_old_config report = Benchmark.ips(1, 1) do |x| - x.report("sleep 0.25") { sleep(0.25) } + assert_equal 1, x.time + assert_equal 1, x.warmup + return end - - rep = report.entries.first - - assert_equal "sleep 0.25", rep.label - assert_equal 4, rep.iterations - assert_in_delta 4.0, rep.ips, 0.2 end def test_ips_defaults @@ -153,14 +151,14 @@ def test_ips_defaults def test_ips_report_using_symbol report = Benchmark.ips do |x| - x.report(:sleep_a_quarter_second) { sleep(0.25) } + x.warmup = 0 + x.time = 0.1 + x.report(:sleep_a_quarter_second) { 1 + 1 } end rep = report.entries.first assert_equal :sleep_a_quarter_second, rep.label - assert_equal 4*5, rep.iterations - assert_in_delta 4.0, rep.ips, 0.2 end def test_ips_default_data @@ -178,8 +176,8 @@ def test_ips_default_data end def test_ips_empty - report = Benchmark.ips do |_x| - + report = Benchmark.ips do |x| + x.config(:warmup => 0.001, :time => 0.001) end all_data = report.data @@ -192,6 +190,7 @@ def test_json_output json_file = Tempfile.new("data.json") Benchmark.ips do |x| + x.config(:warmup => 0.001, :time => 0.001) x.report("sleep 0.25") { sleep(0.25) } x.json! json_file.path end @@ -209,6 +208,7 @@ def test_json_output def test_json_output_to_stdout Benchmark.ips do |x| + x.config(:warmup => 0.001, :time => 0.001) x.report("sleep 0.25") { sleep(0.25) } x.quiet = true x.json! $stdout