1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Decrease default benchmark runs from 10 to 4

This commit is contained in:
Jeremy Kemper 2008-07-16 22:27:04 -07:00
parent 57a2780f14
commit 7430c4168f

View file

@ -11,7 +11,7 @@ module ActiveSupport
DEFAULTS =
if benchmark = ARGV.include?('--benchmark') # HAX for rake test
{ :benchmark => true,
:runs => 10,
:runs => 4,
:metrics => [:process_time, :memory, :objects, :gc_runs, :gc_time],
:output => 'tmp/performance' }
else