2003-09-04 20:36:47 -04:00
|
|
|
require 'test/unit'
|
|
|
|
|
2011-09-30 21:00:40 -04:00
|
|
|
require_relative "envutil"
|
|
|
|
|
2003-09-04 20:36:47 -04:00
|
|
|
class TestGc < Test::Unit::TestCase
|
|
|
|
class S
|
|
|
|
def initialize(a)
|
|
|
|
@a = a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_gc
|
2006-12-31 10:02:22 -05:00
|
|
|
prev_stress = GC.stress
|
|
|
|
GC.stress = false
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2003-09-05 11:15:43 -04:00
|
|
|
assert_nothing_raised do
|
2003-09-04 20:36:47 -04:00
|
|
|
1.upto(10000) {
|
|
|
|
tmp = [0,1,2,3,4,5,6,7,8,9]
|
|
|
|
}
|
|
|
|
tmp = nil
|
|
|
|
end
|
|
|
|
l=nil
|
|
|
|
100000.times {
|
|
|
|
l = S.new(l)
|
|
|
|
}
|
|
|
|
GC.start
|
|
|
|
assert true # reach here or dumps core
|
|
|
|
l = []
|
|
|
|
100000.times {
|
|
|
|
l.push([l])
|
|
|
|
}
|
|
|
|
GC.start
|
|
|
|
assert true # reach here or dumps core
|
2006-12-31 10:02:22 -05:00
|
|
|
|
|
|
|
GC.stress = prev_stress
|
2003-09-04 20:36:47 -04:00
|
|
|
end
|
2008-06-05 10:57:05 -04:00
|
|
|
|
|
|
|
def test_enable_disable
|
|
|
|
GC.enable
|
|
|
|
assert_equal(false, GC.enable)
|
|
|
|
assert_equal(false, GC.disable)
|
|
|
|
assert_equal(true, GC.disable)
|
|
|
|
assert_equal(true, GC.disable)
|
|
|
|
assert_nil(GC.start)
|
|
|
|
assert_equal(true, GC.enable)
|
|
|
|
assert_equal(false, GC.enable)
|
|
|
|
ensure
|
|
|
|
GC.enable
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_count
|
|
|
|
c = GC.count
|
|
|
|
GC.start
|
|
|
|
assert_operator(c, :<, GC.count)
|
|
|
|
end
|
2010-10-27 15:02:24 -04:00
|
|
|
|
|
|
|
def test_stat
|
|
|
|
res = GC.stat
|
|
|
|
assert_equal(false, res.empty?)
|
|
|
|
assert_kind_of(Integer, res[:count])
|
|
|
|
|
|
|
|
arg = Hash.new
|
|
|
|
res = GC.stat(arg)
|
|
|
|
assert_equal(arg, res)
|
|
|
|
assert_equal(false, res.empty?)
|
|
|
|
assert_kind_of(Integer, res[:count])
|
|
|
|
end
|
2010-12-30 09:17:32 -05:00
|
|
|
|
|
|
|
def test_singleton_method
|
2012-04-17 23:38:09 -04:00
|
|
|
assert_in_out_err(%w[--disable-gems], <<-EOS, [], [], "[ruby-dev:42832]")
|
2010-12-30 09:17:32 -05:00
|
|
|
GC.stress = true
|
|
|
|
10.times do
|
|
|
|
obj = Object.new
|
|
|
|
def obj.foo() end
|
|
|
|
def obj.bar() raise "obj.foo is called, but this is obj.bar" end
|
|
|
|
obj.foo
|
|
|
|
end
|
2012-04-17 23:38:09 -04:00
|
|
|
EOS
|
2010-12-30 09:17:32 -05:00
|
|
|
end
|
2011-09-30 21:00:40 -04:00
|
|
|
|
2012-05-27 23:12:33 -04:00
|
|
|
def test_singleton_method_added
|
|
|
|
assert_in_out_err(%w[--disable-gems], <<-EOS, [], [], "[ruby-dev:44436]")
|
|
|
|
class BasicObject
|
2012-05-28 20:52:41 -04:00
|
|
|
undef singleton_method_added
|
2012-05-27 23:12:33 -04:00
|
|
|
def singleton_method_added(mid)
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
b = proc {}
|
|
|
|
class << b; end
|
|
|
|
b.clone rescue nil
|
|
|
|
GC.start
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2011-09-30 21:00:40 -04:00
|
|
|
def test_gc_parameter
|
|
|
|
env = {
|
|
|
|
"RUBY_GC_MALLOC_LIMIT" => "60000000",
|
|
|
|
"RUBY_HEAP_MIN_SLOTS" => "100000"
|
|
|
|
}
|
2011-10-03 11:02:58 -04:00
|
|
|
assert_normal_exit("exit", "[ruby-core:39777]", :child_env => env)
|
|
|
|
|
|
|
|
env = {
|
2011-10-03 21:25:04 -04:00
|
|
|
"RUBYOPT" => "",
|
2011-10-03 11:02:58 -04:00
|
|
|
"RUBY_HEAP_MIN_SLOTS" => "100000"
|
|
|
|
}
|
|
|
|
assert_in_out_err([env, "-e", "exit"], "", [], [], "[ruby-core:39795]")
|
2011-10-03 22:44:55 -04:00
|
|
|
assert_in_out_err([env, "-W0", "-e", "exit"], "", [], [], "[ruby-core:39795]")
|
|
|
|
assert_in_out_err([env, "-W1", "-e", "exit"], "", [], [], "[ruby-core:39795]")
|
2011-10-03 11:02:58 -04:00
|
|
|
assert_in_out_err([env, "-w", "-e", "exit"], "", [], /heap_min_slots=100000/, "[ruby-core:39795]")
|
2011-09-30 21:00:40 -04:00
|
|
|
end
|
2003-09-04 20:36:47 -04:00
|
|
|
end
|