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

ruby-changes:5210

From: mame <ko1@a...>
Date: Fri, 30 May 2008 22:24:03 +0900 (JST)
Subject: [ruby-changes:5210] Ruby:r16705 (trunk): * test/ruby/test_argf.rb: rename a conflicting method name.

mame	2008-05-30 22:18:17 +0900 (Fri, 30 May 2008)

  New Revision: 16705

  Modified files:
    trunk/ChangeLog
    trunk/test/ruby/test_argf.rb
    trunk/test/ruby/test_io.rb
    trunk/test/ruby/test_string.rb

  Log:
    * test/ruby/test_argf.rb: rename a conflicting method name.
    
    * test/ruby/test_string.rb: ditto.
    
    * test/ruby/test_io.rb: ditto.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/ruby/test_string.rb?r1=16705&r2=16704&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/ruby/test_io.rb?r1=16705&r2=16704&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=16705&r2=16704&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/test/ruby/test_argf.rb?r1=16705&r2=16704&diff_format=u

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 16704)
+++ ChangeLog	(revision 16705)
@@ -1,3 +1,11 @@
+Fri May 30 22:17:39 2008  Yusuke Endoh  <mame@t...>
+
+	* test/ruby/test_argf.rb: rename a conflicting method name.
+
+	* test/ruby/test_string.rb: ditto.
+
+	* test/ruby/test_io.rb: ditto.
+
 Fri May 30 22:14:37 2008  Yusuke Endoh  <mame@t...>
 
 	* compile.c (defined_expr): fix SEGV by defined?([1]).
Index: test/ruby/test_argf.rb
===================================================================
--- test/ruby/test_argf.rb	(revision 16704)
+++ test/ruby/test_argf.rb	(revision 16705)
@@ -93,7 +93,7 @@
     end
   end
 
-  def test_lineno
+  def test_lineno2
     ruby('-e', <<-SRC, @t1.path, @t2.path, @t3.path) do |f|
       a = ARGF.dup
       a.gets; p $.  #=> 1
Index: test/ruby/test_string.rb
===================================================================
--- test/ruby/test_string.rb	(revision 16704)
+++ test/ruby/test_string.rb	(revision 16705)
@@ -1587,7 +1587,7 @@
     assert("abc".end_with?("c"))
   end
 
-  def test_times
+  def test_times2
     s1 = ''
     100.times {|n|
       s2 = "a" * n
Index: test/ruby/test_io.rb
===================================================================
--- test/ruby/test_io.rb	(revision 16704)
+++ test/ruby/test_io.rb	(revision 16705)
@@ -593,7 +593,7 @@
     assert_equal(nil, IO.try_convert("STDOUT"))
   end
 
-  def test_ungetc
+  def test_ungetc2
     pipe do |r, w|
       r.ungetc("0" * 10000)
       w.write("1" * 10000)

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

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