From 0d4761fb1a122e012a355107b6cb2fbedaa7a124 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 1 Dec 2007 05:43:06 +0000 Subject: * bootstraptest/test_knownbug.rb: move fixed bugs. * test/ruby/test_sprintf.rb: ditto. * test/yaml/test_yaml.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_sprintf.rb | 4 ++++ test/yaml/test_yaml.rb | 13 +++++++++++++ 2 files changed, 17 insertions(+) (limited to 'test') diff --git a/test/ruby/test_sprintf.rb b/test/ruby/test_sprintf.rb index 01b7b904e9..7d6cab76f1 100644 --- a/test/ruby/test_sprintf.rb +++ b/test/ruby/test_sprintf.rb @@ -141,6 +141,10 @@ class TestSprintf < Test::Unit::TestCase assert_equal("-0000Inf", sprintf("% 08f", -inf)) assert_equal("-Inf ", sprintf("%- 08f", -inf)) assert_equal("-0000Inf", sprintf("%+ 08f", -inf)) + assert_equal('..f00000000', + sprintf("%x", -2**32), '[ruby-dev:32351]') + assert_equal("..101111111111111111111111111111111", + sprintf("%b", -2147483649), '[ruby-dev:32365]') end def test_invalid diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb index 77602c1123..1aebfd30cc 100644 --- a/test/yaml/test_yaml.rb +++ b/test/yaml/test_yaml.rb @@ -34,6 +34,14 @@ class YAML_Unit_Tests < Test::Unit::TestCase end def assert_cycle( obj ) + if Time === obj + x = YAML::load( obj.to_yaml ) + y = obj + STDERR.puts [y.tv_sec, y.tv_usec, y.tv_nsec].inspect + STDERR.puts [x.tv_sec, x.tv_usec, x.tv_nsec].inspect + STDERR.puts [obj.<=>(x)] + STDERR.puts [obj.eql?(x)].inspect + end assert_equal( obj, YAML::load( obj.to_yaml ) ) end @@ -1280,6 +1288,11 @@ EOY 1000.times { |i| omap["key_#{i}"] = { "value" => i } } raise "id collision in ordered map" if omap.to_yaml =~ /id\d+/ end + + def test_normal_exit + YAML.load("2000-01-01 00:00:00.#{"0"*1000} +00:00\n") + # '[ruby-core:13735]' + end end if $0 == __FILE__ -- cgit v1.2.3