зеркало из https://github.com/github/ruby.git
Use assert_separately to speed up slow tests
These speed will slow down when there are many objects like test-all. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
bc2195e4fb
Коммит
1e7ef5882e
|
@ -70,6 +70,7 @@ class TestObjSpace < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_reachable_objects_from
|
||||
assert_separately %w[--disable-gem -robjspace], __FILE__, __LINE__, <<-'eom'
|
||||
assert_equal(nil, ObjectSpace.reachable_objects_from(nil))
|
||||
assert_equal([Array, 'a', 'b', 'c'], ObjectSpace.reachable_objects_from(['a', 'b', 'c']))
|
||||
|
||||
|
@ -91,9 +92,11 @@ class TestObjSpace < Test::Unit::TestCase
|
|||
end
|
||||
}
|
||||
assert_operator(max, :>=, 1_001, "1000 elems + Array class")
|
||||
eom
|
||||
end
|
||||
|
||||
def test_reachable_objects_size
|
||||
assert_separately %w[--disable-gem -robjspace], __FILE__, __LINE__, <<-'eom'
|
||||
ObjectSpace.each_object{|o|
|
||||
ObjectSpace.reachable_objects_from(o).each{|reached_obj|
|
||||
size = ObjectSpace.memsize_of(reached_obj)
|
||||
|
@ -101,5 +104,6 @@ class TestObjSpace < Test::Unit::TestCase
|
|||
assert_operator(size, :>=, 0)
|
||||
}
|
||||
}
|
||||
eom
|
||||
end
|
||||
end
|
||||
|
|
|
@ -120,6 +120,7 @@ class TestGc < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_profiler_clear
|
||||
assert_separately %w[--disable-gem], __FILE__, __LINE__, <<-'eom'
|
||||
GC::Profiler.enable
|
||||
|
||||
GC.start
|
||||
|
@ -131,8 +132,7 @@ class TestGc < Test::Unit::TestCase
|
|||
assert_equal(200, GC::Profiler.raw_data.size)
|
||||
GC::Profiler.clear
|
||||
assert_equal(0, GC::Profiler.raw_data.size)
|
||||
ensure
|
||||
GC::Profiler.disable
|
||||
eom
|
||||
end
|
||||
|
||||
def test_finalizing_main_thread
|
||||
|
|
Загрузка…
Ссылка в новой задаче