summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-17 19:29:38 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-17 19:29:38 +0000
commita18a0011589f1307102a500b22a471eee76bda28 (patch)
tree51ff7ba40cca3b8d1682410dac86da53b19f4c68
parenta74438f583dea6c6ec740220d26f70887aa15c27 (diff)
downloadruby-a18a0011589f1307102a500b22a471eee76bda28.tar.gz
ruby-a18a0011589f1307102a500b22a471eee76bda28.tar.xz
ruby-a18a0011589f1307102a500b22a471eee76bda28.zip
* KNOWNBUGS.rb, bootstraptest/pending.rb: move pending bug.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--KNOWNBUGS.rb15
-rw-r--r--bootstraptest/pending.rb15
3 files changed, 19 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index d6fad04f4..87c81cc83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 18 04:27:58 2008 Koichi Sasada <ko1@atdot.net>
+
+ * KNOWNBUGS.rb, bootstraptest/pending.rb: move pending bug.
+
Wed Jun 18 04:24:20 2008 Koichi Sasada <ko1@atdot.net>
* vm.c, vm_insnhelper.c: fix escape process with "braek" and "return"
diff --git a/KNOWNBUGS.rb b/KNOWNBUGS.rb
index e3ac86776..b97a08d92 100644
--- a/KNOWNBUGS.rb
+++ b/KNOWNBUGS.rb
@@ -3,18 +3,3 @@
# So all tests will cause failure.
#
-assert_equal 'A', %q{
- class A
- @@a = 'A'
- def a=(x)
- @@a = x
- end
- def a
- @@a
- end
- end
-
- B = A.dup
- B.new.a = 'B'
- A.new.a
-}
diff --git a/bootstraptest/pending.rb b/bootstraptest/pending.rb
index e69de29bb..30c241619 100644
--- a/bootstraptest/pending.rb
+++ b/bootstraptest/pending.rb
@@ -0,0 +1,15 @@
+assert_equal 'A', %q{
+ class A
+ @@a = 'A'
+ def a=(x)
+ @@a = x
+ end
+ def a
+ @@a
+ end
+ end
+
+ B = A.dup
+ B.new.a = 'B'
+ A.new.a
+}, '[ruby-core:17019]'