mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 19:44:01 +02:00
sprintf.c: avoid garbage in common (no exception) case
Format strings which are dynamically-generated will benefit from this. This won't cover exceptions, but exceptions for sprintf should be too uncommon to care about (unlike IO) * sprintf.c (rb_str_format): use rb_str_tmp_frozen_{acquire,release} * test/ruby/test_sprintf.rb (test_no_hidden_garbage): new test git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4b9a21cdd6
commit
ba5aa60668
2 changed files with 14 additions and 2 deletions
|
@ -451,4 +451,14 @@ class TestSprintf < Test::Unit::TestCase
|
|||
bug = 'https://github.com/mruby/mruby/issues/3347'
|
||||
assert_equal("!", sprintf("%*c", 0, ?!.ord), bug)
|
||||
end
|
||||
|
||||
def test_no_hidden_garbage
|
||||
fmt = [4, 2, 2].map { |x| "%0#{x}d" }.join('-') # defeats optimization
|
||||
ObjectSpace.count_objects(res = {}) # creates strings on first call
|
||||
before = ObjectSpace.count_objects(res)[:T_STRING]
|
||||
val = sprintf(fmt, 1970, 1, 1)
|
||||
after = ObjectSpace.count_objects(res)[:T_STRING]
|
||||
assert_equal before + 1, after, 'only new string is the created one'
|
||||
assert_equal '1970-01-01', val
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue