shard-ameba/bench/check_sources.cr

31 lines
618 B
Crystal
Raw Normal View History

require "../src/ameba"
require "benchmark"
2017-11-13 21:20:22 +00:00
private def get_files(n)
Dir["src/**/*.cr"].first(n)
end
puts "== Compare:"
Benchmark.ips do |x|
[
1,
3,
5,
10,
20,
30,
40,
2023-11-11 18:03:28 +00:00
].each do |n| # ameba:disable Naming/BlockParameterName
2017-11-13 21:20:22 +00:00
config = Ameba::Config.load
config.formatter = Ameba::Formatter::BaseFormatter.new
config.globs = get_files(n)
s = n == 1 ? "" : "s"
2017-11-13 21:20:22 +00:00
x.report("#{n} source#{s}") { Ameba.run config }
end
end
puts "== Measure:"
2017-11-17 22:13:14 +00:00
config = Ameba::Config.load
config.formatter = Ameba::Formatter::BaseFormatter.new
puts Benchmark.measure { Ameba.run config }