summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-06 02:42:30 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-06 02:42:30 +0000
commitfeecc10bfcf6fb95f60f62dbfcc9b23fc15813f2 (patch)
tree97272039f354fd2d65ab2330c4ef3ba6a659a474 /test/ruby/test_jit.rb
parent4d1163b182bdd572edaa44ff000240d49acc09d6 (diff)
Suppress unnecessary warnings in test_jit
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 9380ee98e1..5b5c21d76d 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -184,9 +184,9 @@ class TestJIT < Test::Unit::TestCase
end
def test_compile_insn_definemethod
- assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: 'hellohello', success_count: 2, insns: %i[definemethod])
+ assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: 'hello', success_count: 2, insns: %i[definemethod])
begin;
- print 2.times.map {
+ print 1.times.map {
def method_definition
'hello'
end
@@ -698,9 +698,11 @@ class TestJIT < Test::Unit::TestCase
end
end
+ verbose, $VERBOSE = $VERBOSE, false # suppress "instance variable @b not initialized"
print(Foo.new.bar)
print(Foo.new.bar)
print(Foo.new.bar)
+ $VERBOSE = verbose
end;
end
@@ -729,10 +731,8 @@ class TestJIT < Test::Unit::TestCase
p(a.undefined)
# redefinition
- class A
- def test
- 3
- end
+ def a.test
+ 3
end
print(2 * a.test)