1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/objspace/test_objspace.rb (test_dump_all): Make the test string

shorter to be an embedded string on 32bit environment as well as
  64bit environment.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-11-09 11:53:02 +00:00
parent 5e73aa6e24
commit c3fdc2cfb0
2 changed files with 8 additions and 2 deletions

View file

@ -218,12 +218,12 @@ class TestObjSpace < Test::Unit::TestCase
end
def test_dump_all
entry = /"value":"this is a test string", "encoding":"UTF-8", "file":"-", "line":4, "method":"dump_my_heap_please"/
entry = /"value":"TEST STRING", "encoding":"UTF-8", "file":"-", "line":4, "method":"dump_my_heap_please"/
assert_in_out_err(%w[-robjspace], <<-'end;', entry)
def dump_my_heap_please
ObjectSpace.trace_object_allocations_start
GC.start
"this is a test string".force_encoding("UTF-8")
"TEST STRING".force_encoding("UTF-8")
ObjectSpace.dump_all(output: :stdout)
end