summaryrefslogtreecommitdiff
path: root/test/ruby/test_variable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_variable.rb')
-rw-r--r--test/ruby/test_variable.rb111
1 files changed, 0 insertions, 111 deletions
diff --git a/test/ruby/test_variable.rb b/test/ruby/test_variable.rb
index 86f2e4bb84..d425b43b0d 100644
--- a/test/ruby/test_variable.rb
+++ b/test/ruby/test_variable.rb
@@ -174,21 +174,6 @@ class TestVariable < Test::Unit::TestCase
end
end
- def test_set_class_variable_on_frozen_object
- set_cvar = EnvUtil.labeled_class("SetCVar")
- set_cvar.class_eval "#{<<~"begin;"}\n#{<<~'end;'}"
- begin;
- def self.set(val)
- @@a = val # inline cache
- end
- end;
- set_cvar.set(1) # fill write cache
- set_cvar.freeze
- assert_raise(FrozenError, "[Bug #19341]") do
- set_cvar.set(2) # hit write cache, but should check frozen status
- end
- end
-
def test_variable
assert_instance_of(Integer, $$)
@@ -266,84 +251,6 @@ class TestVariable < Test::Unit::TestCase
assert_include(gv, :$12)
end
- def prepare_klass_for_test_svar_with_ifunc
- Class.new do
- include Enumerable
- def each(&b)
- @b = b
- end
-
- def check1
- check2.merge({check1: $1})
- end
-
- def check2
- @b.call('foo')
- {check2: $1}
- end
- end
- end
-
- def test_svar_with_ifunc
- c = prepare_klass_for_test_svar_with_ifunc
-
- expected_check1_result = {
- check1: nil, check2: nil
- }.freeze
-
- obj = c.new
- result = nil
- obj.grep(/(f..)/){
- result = $1
- }
- assert_equal nil, result
- assert_equal nil, $1
- assert_equal expected_check1_result, obj.check1
- assert_equal 'foo', result
- assert_equal 'foo', $1
-
- # this frame was escaped so try it again
- $~ = nil
- obj = c.new
- result = nil
- obj.grep(/(f..)/){
- result = $1
- }
- assert_equal nil, result
- assert_equal nil, $1
- assert_equal expected_check1_result, obj.check1
- assert_equal 'foo', result
- assert_equal 'foo', $1
-
- # different context
- result = nil
- Fiber.new{
- obj = c.new
- obj.grep(/(f..)/){
- result = $1
- }
- }.resume # obj is created in antoher Fiber
- assert_equal nil, result
- assert_equal expected_check1_result, obj.check1
- assert_equal 'foo', result
- assert_equal 'foo', $1
-
- # different thread context
- result = nil
- Thread.new{
- obj = c.new
- obj.grep(/(f..)/){
- result = $1
- }
- }.join # obj is created in another Thread
-
- assert_equal nil, result
- assert_equal expected_check1_result, obj.check1
- assert_equal 'foo', result
- assert_equal 'foo', $1
- end
-
-
def test_global_variable_0
assert_in_out_err(["-e", "$0='t'*1000;print $0"], "", /\At+\z/, [])
end
@@ -373,12 +280,6 @@ class TestVariable < Test::Unit::TestCase
v.instance_variable_set(:@foo, :bar)
end
- assert_raise_with_message(FrozenError, msg, "[Bug #19339]") do
- v.instance_eval do
- @a = 1
- end
- end
-
assert_nil EnvUtil.suppress_warning {v.instance_variable_get(:@foo)}
assert_not_send([v, :instance_variable_defined?, :@foo])
@@ -413,18 +314,6 @@ class TestVariable < Test::Unit::TestCase
assert_equal(%i(v1 v2 v3 v4 v5 v6 v7 v8 v9 v10 v11), v, bug11674)
end
- def test_many_instance_variables
- objects = [Object.new, Hash.new, Module.new]
- objects.each do |obj|
- 1000.times do |i|
- obj.instance_variable_set("@var#{i}", i)
- end
- 1000.times do |i|
- assert_equal(i, obj.instance_variable_get("@var#{i}"))
- end
- end
- end
-
private
def with_kwargs_11(v1:, v2:, v3:, v4:, v5:, v6:, v7:, v8:, v9:, v10:, v11:)
local_variables