[前][次][番号順一覧][スレッド一覧]

ruby-changes:1737

From: ko1@a...
Date: 22 Aug 2007 14:09:54 +0900
Subject: [ruby-changes:1737] ko1 - Ruby:r13228 (trunk): * bootstraptest/test_knwonbug.rb: added. This file will contain

ko1	2007-08-22 14:09:45 +0900 (Wed, 22 Aug 2007)

  New Revision: 13228

  Added files:
    trunk/bootstraptest/test_knwonbug.rb
  Modified files:
    trunk/ChangeLog
    trunk/bootstraptest/test_massign.rb

  Log:
    * bootstraptest/test_knwonbug.rb: added.  This file will contain
      test cases which point out known bug.  If bug is fixed, tests
      should move to the suitable place.
    * bootstraptest/test_massign.rb: move a test which show known bug
      to test_knownbug.rb.
    


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=13228&r2=13227
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/bootstraptest/test_massign.rb?r1=13228&r2=13227
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/bootstraptest/test_knwonbug.rb?revision=13228&view=markup

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 13227)
+++ ChangeLog	(revision 13228)
@@ -1,3 +1,12 @@
+Wed Aug 22 14:04:53 2007  Koichi Sasada  <ko1@a...>
+
+	* bootstraptest/test_knwonbug.rb: added.  This file will contain
+	  test cases which point out known bug.  If bug is fixed, tests
+	  should move to the suitable place.
+
+	* bootstraptest/test_massign.rb: move a test which show known bug
+	  to test_knownbug.rb.
+
 Wed Aug 22 13:02:26 2007  Tanaka Akira  <akr@f...>
 
 	* bootstraptest/runner.rb (in_temporary_working_directory):
@@ -19,7 +28,7 @@
 	* cont.c: add Fiber#resume and Fiber.yield.
 	  and Fiber::Core class to realize Coroutine.
 
-	* include/ruby/intern.h: declare rb_fiber_yield(), rb_fiber_resume(),
+	* include/ruby/intern.h: declare rb_fiber_yield(), rb_fiber_resume().
 
 	* enumerator.c: use above api.
 
Index: bootstraptest/test_massign.rb
===================================================================
--- bootstraptest/test_massign.rb	(revision 13227)
+++ bootstraptest/test_massign.rb	(revision 13228)
@@ -4,8 +4,6 @@
 assert_equal '[]',          '*a = *nil; a'
 assert_equal '[nil]',       '*a = nil; a'
 
-assert_equal '2',       'a, a = 1, 2; a', "[ruby-dev:31522]"
-
 =begin
 # generated by this script:
 
Index: bootstraptest/test_knwonbug.rb
===================================================================
--- bootstraptest/test_knwonbug.rb	(revision 0)
+++ bootstraptest/test_knwonbug.rb	(revision 13228)
@@ -0,0 +1,9 @@
+#
+# This test file concludes tests which point out known bugs.
+# So all tests will cause failure.
+#
+
+# massign
+assert_equal '2', 'a, a = 1, 2; a', "[ruby-dev:31522]"
+
+

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]