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

ruby-changes:29325

From: naruse <ko1@a...>
Date: Tue, 18 Jun 2013 16:11:06 +0900 (JST)
Subject: [ruby-changes:29325] naruse:r41377 (trunk): Remove useless sleep

naruse	2013-06-18 16:10:56 +0900 (Tue, 18 Jun 2013)

  New Revision: 41377

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=41377

  Log:
    Remove useless sleep

  Modified files:
    trunk/test/ruby/test_notimp.rb

Index: test/ruby/test_notimp.rb
===================================================================
--- test/ruby/test_notimp.rb	(revision 41376)
+++ test/ruby/test_notimp.rb	(revision 41377)
@@ -23,7 +23,7 @@ class TestNotImplement < Test::Unit::Tes https://github.com/ruby/ruby/blob/trunk/test/ruby/test_notimp.rb#L23
   def test_call_fork
     pid = nil
     Timeout.timeout(1) {
-      pid = fork {sleep}
+      pid = fork {}
       Process.wait pid
       pid = nil
     }

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

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