* lib/tracer.rb: Tracer.on only if required by -r command-line option.

and consider --disable-gems option.
* test/test_tracer.rb: add tests for it.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2011-06-29 13:19:59 +00:00
parent d073f1d53c
commit e31caff00e
3 changed files with 59 additions and 5 deletions

View File

@ -1,3 +1,9 @@
Wed Jun 29 22:04:14 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* lib/tracer.rb: Tracer.on only if required by -r command-line option.
and consider --disable-gems option.
* test/test_tracer.rb: add tests for it.
Wed Jun 29 13:55:36 2011 Yukihiro Matsumoto <matz@ruby-lang.org> Wed Jun 29 13:55:36 2011 Yukihiro Matsumoto <matz@ruby-lang.org>
* variable.c (rb_const_get_0): should not look for superclasses if * variable.c (rb_const_get_0): should not look for superclasses if

View File

@ -287,7 +287,12 @@ if $0 == __FILE__
ARGV.shift ARGV.shift
Tracer.on Tracer.on
require $0 require $0
elsif caller.count {|bt| /\/rubygems\/custom_require.rb:/ !~ bt} <= 1 else
Tracer.on # call Tracer.on only if required by -r command-line option
count = caller.count {|bt| /\/rubygems\/custom_require.rb:/ !~ bt}
if (defined?(Gem) and count == 0) or
(!defined?(Gem) and count <= 1)
Tracer.on
end
end end
# :startdoc: # :startdoc:

View File

@ -1,14 +1,15 @@
require 'test/unit' require 'test/unit'
require 'tmpdir'
require_relative 'ruby/envutil' require_relative 'ruby/envutil'
class TestTracer < Test::Unit::TestCase class TestTracer < Test::Unit::TestCase
include EnvUtil include EnvUtil
def test_work_with_e def test_tracer_with_option_r
assert_in_out_err(%w[--disable-gems -rtracer -e 1]) do |(*lines),| assert_in_out_err(%w[-rtracer -e 1]) do |(*lines),|
case lines.size case lines.size
when 2 when 2
assert_match %r[#0:<internal:lib/rubygems/custom_require>:\d+:Kernel:<: -], lines[0] assert_match(%r{rubygems/custom_require\.rb:\d+:Kernel:<:}, lines[0])
when 1 when 1
# do nothing # do nothing
else else
@ -17,4 +18,46 @@ class TestTracer < Test::Unit::TestCase
assert_equal "#0:-e:1::-: 1", lines.last assert_equal "#0:-e:1::-: 1", lines.last
end end
end end
def test_tracer_with_option_r_without_gems
assert_in_out_err(%w[--disable-gems -rtracer -e 1]) do |(*lines),|
case lines.size
when 1
# do nothing
else
flunk "unexpected output from `ruby --disable-gems -rtracer -e 1`"
end
assert_equal "#0:-e:1::-: 1", lines.last
end
end
def test_tracer_with_require
Dir.mktmpdir("test_ruby_tracer") do |dir|
script = File.join(dir, "require_tracer.rb")
open(script, "w") do |f|
f.print <<-EOF
require 'tracer'
1
EOF
end
assert_in_out_err([script]) do |(*lines),|
assert_empty(lines)
end
end
end
def test_tracer_with_require_without_gems
Dir.mktmpdir("test_ruby_tracer") do |dir|
script = File.join(dir, "require_tracer.rb")
open(script, "w") do |f|
f.print <<-EOF
require 'tracer'
1
EOF
end
assert_in_out_err(["--disable-gems", script]) do |(*lines),|
assert_empty(lines)
end
end
end
end end