aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/performance.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-02-04 17:16:25 +0100
committerYves Senn <yves.senn@gmail.com>2013-06-27 20:44:08 +0200
commit1db54d7d01ea36a9d8c0c6276d66d04a9a6c2fac (patch)
tree360223f1b9ac96624cb070f4e884b7850b60920b /activesupport/lib/active_support/testing/performance.rb
parent63d4894a58825e9d1fb520ec6ac663e4d8529596 (diff)
downloadrails-1db54d7d01ea36a9d8c0c6276d66d04a9a6c2fac.tar.gz
rails-1db54d7d01ea36a9d8c0c6276d66d04a9a6c2fac.tar.bz2
rails-1db54d7d01ea36a9d8c0c6276d66d04a9a6c2fac.zip
Backport rails/rails-perftest#2 to fix rake test:benchmark
Diffstat (limited to 'activesupport/lib/active_support/testing/performance.rb')
-rw-r--r--activesupport/lib/active_support/testing/performance.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/performance.rb b/activesupport/lib/active_support/testing/performance.rb
index dd23f8d82d..5b74e52953 100644
--- a/activesupport/lib/active_support/testing/performance.rb
+++ b/activesupport/lib/active_support/testing/performance.rb
@@ -23,7 +23,7 @@ module ActiveSupport
# each implementation should define metrics and freeze the defaults
DEFAULTS =
- if ARGV.include?('--benchmark') # HAX for rake test
+ if ENV["BENCHMARK_TESTS"]
{ :runs => 4,
:output => 'tmp/performance',
:benchmark => true }