ruby-changes:5884
From: ko1 <ko1@a...>
Date: Wed, 18 Jun 2008 04:30:57 +0900 (JST)
Subject: [ruby-changes:5884] Ruby:r17391 (trunk): * KNOWNBUGS.rb, bootstraptest/pending.rb: move pending bug.
ko1 2008-06-18 04:29:38 +0900 (Wed, 18 Jun 2008)
New Revision: 17391
Modified files:
trunk/ChangeLog
trunk/KNOWNBUGS.rb
trunk/bootstraptest/pending.rb
Log:
* KNOWNBUGS.rb, bootstraptest/pending.rb: move pending bug.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=17391&r2=17390&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/KNOWNBUGS.rb?r1=17391&r2=17390&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/bootstraptest/pending.rb?r1=17391&r2=17390&diff_format=u
Index: ChangeLog
===================================================================
--- ChangeLog (revision 17390)
+++ ChangeLog (revision 17391)
@@ -1,3 +1,7 @@
+Wed Jun 18 04:27:58 2008 Koichi Sasada <ko1@a...>
+
+ * KNOWNBUGS.rb, bootstraptest/pending.rb: move pending bug.
+
Wed Jun 18 04:24:20 2008 Koichi Sasada <ko1@a...>
* vm.c, vm_insnhelper.c: fix escape process with "braek" and "return"
Index: bootstraptest/pending.rb
===================================================================
--- bootstraptest/pending.rb (revision 17390)
+++ bootstraptest/pending.rb (revision 17391)
@@ -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]'
Index: KNOWNBUGS.rb
===================================================================
--- KNOWNBUGS.rb (revision 17390)
+++ KNOWNBUGS.rb (revision 17391)
@@ -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
-}
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/