summaryrefslogtreecommitdiff
path: root/test/runner.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-16 08:46:21 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-16 08:46:21 +0000
commit769715bda562feab2b30aefeda9f83c72624e163 (patch)
tree24d784e88588dfc16d2f026d85fe9b561e46f60b /test/runner.rb
parentd51138ddade805c729d6d978675ee8ac8be4b5ac (diff)
* test/profile_test_all.rb: refactoring memory profiling tool for
test-all. Add profiling targets /proc/meminfo and /proc/self/status. * test/runner.rb: accept other than 'true'. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/runner.rb')
-rw-r--r--test/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runner.rb b/test/runner.rb
index a3bb070e4f..94beb448cd 100644
--- a/test/runner.rb
+++ b/test/runner.rb
@@ -12,7 +12,7 @@ end
ENV["GEM_SKIP"] = ENV["GEM_HOME"] = ENV["GEM_PATH"] = "".freeze
-require_relative 'profile_test_all' if ENV['RUBY_TEST_ALL_PROFILE'] == 'true'
+require_relative 'profile_test_all' if ENV.has_key?('RUBY_TEST_ALL_PROFILE')
module Test::Unit
module ZombieHunter