From e929f49e564dab959e6df43bb7e3621d74e8c3c5 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 19 Jun 2008 16:08:16 +0000 Subject: [PATCH] * KNOWNBUGS.rb, bootstraptest/pending.rb: move a bug (?) to pending. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ KNOWNBUGS.rb | 8 -------- bootstraptest/pending.rb | 7 +++++++ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 73b8561b83..c1513dc845 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Jun 20 01:07:28 2008 Koichi Sasada + + * KNOWNBUGS.rb, bootstraptest/pending.rb: move a bug (?) to pending. + Fri Jun 20 00:40:08 2008 Koichi Sasada * proc.c (proc_new): fix to return Proc object if block is already diff --git a/KNOWNBUGS.rb b/KNOWNBUGS.rb index 8eea8ec146..b97a08d928 100644 --- a/KNOWNBUGS.rb +++ b/KNOWNBUGS.rb @@ -3,11 +3,3 @@ # So all tests will cause failure. # -assert_normal_exit %q{ - r = Range.allocate - def r.<=>(o) true end - r.instance_eval { initialize r, r } - r.inspect -} - - diff --git a/bootstraptest/pending.rb b/bootstraptest/pending.rb index b894fb6b04..744c0adac1 100644 --- a/bootstraptest/pending.rb +++ b/bootstraptest/pending.rb @@ -30,3 +30,10 @@ assert_equal 'ok', %q{ :ok end } + +assert_normal_exit %q{ + r = Range.allocate + def r.<=>(o) true end + r.instance_eval { initialize r, r } + r.inspect +}