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

ruby-changes:46811

From: k0kubun <ko1@a...>
Date: Sat, 27 May 2017 22:54:14 +0900 (JST)
Subject: [ruby-changes:46811] k0kubun:r58926 (trunk): bootstraptest/test_insns.rb: Fix typo

k0kubun	2017-05-27 22:54:09 +0900 (Sat, 27 May 2017)

  New Revision: 58926

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58926

  Log:
    bootstraptest/test_insns.rb: Fix typo
    
    on test message. "torexp" insn does not exist.

  Modified files:
    trunk/bootstraptest/test_insns.rb
Index: bootstraptest/test_insns.rb
===================================================================
--- bootstraptest/test_insns.rb	(revision 58925)
+++ bootstraptest/test_insns.rb	(revision 58926)
@@ -69,7 +69,7 @@ tests = [ https://github.com/ruby/ruby/blob/trunk/bootstraptest/test_insns.rb#L69
   [ 'tostring / concatstrings', %q{ "#{true}" }, ],
   [ 'freezestring',             %q{ "#{true}"}, fsl, ],
   [ 'freezestring',             %q{ "#{true}"}, '-d', fsl, ],
-  [ 'torexp',                   %q{ /#{true}/ =~ "true" && $~ }, ],
+  [ 'toregexp',                 %q{ /#{true}/ =~ "true" && $~ }, ],
 
   [ 'newarray',    %q{ ["true"][0] }, ],
   [ 'duparray',    %q{ [ true ][0] }, ],

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

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