summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-19 16:08:16 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-19 16:08:16 +0000
commit5494c042bb3c70131ba898e18d4f5e5b604617a8 (patch)
treea27c19e096126f339805694173d4a47dd263b940
parent09a20fde84c23a948d78826cd70e765650964ed9 (diff)
downloadruby-5494c042bb3c70131ba898e18d4f5e5b604617a8.tar.gz
ruby-5494c042bb3c70131ba898e18d4f5e5b604617a8.tar.xz
ruby-5494c042bb3c70131ba898e18d4f5e5b604617a8.zip
* KNOWNBUGS.rb, bootstraptest/pending.rb: move a bug (?) to pending.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--KNOWNBUGS.rb8
-rw-r--r--bootstraptest/pending.rb7
3 files changed, 11 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 73b8561b8..c1513dc84 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 20 01:07:28 2008 Koichi Sasada <ko1@atdot.net>
+
+ * KNOWNBUGS.rb, bootstraptest/pending.rb: move a bug (?) to pending.
+
Fri Jun 20 00:40:08 2008 Koichi Sasada <ko1@atdot.net>
* proc.c (proc_new): fix to return Proc object if block is already
diff --git a/KNOWNBUGS.rb b/KNOWNBUGS.rb
index 8eea8ec14..b97a08d92 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 b894fb6b0..744c0adac 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
+}