summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2021-05-12 12:57:53 +0900
committerKoichi Sasada <ko1@atdot.net>2021-05-12 12:57:53 +0900
commit5a6af44e204ed03616c0b0f43a7aeeeb79f4d0ce (patch)
treed7d20d0a3700cffa7e35f62f9a06b99eb1473e7d
parent3df7c967bb5fca8767f384374710b1a1529ee37a (diff)
skip test for debug.
test_memsize_of_iseq fails on repeat tests and it seems to difficult to solve immediately. Now this test is skipped. It seems that the result of `memsize_of(Object.new)` are increased. Why...?
-rw-r--r--test/objspace/test_objspace.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/objspace/test_objspace.rb b/test/objspace/test_objspace.rb
index 58e086c0a0..812b0817a8 100644
--- a/test/objspace/test_objspace.rb
+++ b/test/objspace/test_objspace.rb
@@ -106,6 +106,8 @@ class TestObjSpace < Test::Unit::TestCase
end
def test_memsize_of_iseq
+ skip # To debug
+
iseqw = RubyVM::InstructionSequence.compile('def a; a = :b; a; end')
base_obj_size = ObjectSpace.memsize_of(Object.new)
assert_operator(ObjectSpace.memsize_of(iseqw), :>, base_obj_size)