summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-23 11:57:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-23 11:57:01 +0000
commit5396d8a1ab52b4da4f5199109472fe7f8ea43085 (patch)
tree44c7235c2395f933342c2c6b269bc160c5ad5b55 /test
parent63436b3ff215e0b38c76ced4e5c1c1bba41dad62 (diff)
strftime.c: format in String
* strftime.c (rb_strftime_with_timespec): append formatted results to the given string with expanding, and also deal with NUL chars. * strftime.c (rb_strftime, rb_strftime_timespec): return formatted string, not the length put in the given buffer. * time.c (rb_strftime_alloc): no longer needs to retry with reallocating buffers. * time.c (time_strftime): no longer needs to split by NUL chars. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_time.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ruby/test_time.rb b/test/ruby/test_time.rb
index 232d3472c4..71f2756216 100644
--- a/test/ruby/test_time.rb
+++ b/test/ruby/test_time.rb
@@ -810,8 +810,7 @@ class TestTime < Test::Unit::TestCase
end
def test_strftime_too_wide
- bug4457 = '[ruby-dev:43285]'
- assert_raise(Errno::ERANGE, bug4457) {Time.now.strftime('%8192z')}
+ assert_equal(8192, Time.now.strftime('%8192z').size)
end
def test_strfimte_zoneoffset