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

ruby-changes:15633

From: wanabe <ko1@a...>
Date: Thu, 29 Apr 2010 19:51:23 +0900 (JST)
Subject: [ruby-changes:15633] Ruby:r27548 (trunk): * test/test_open3.rb (test_commandline): skip the test with Shellwords on

wanabe	2010-04-29 19:51:01 +0900 (Thu, 29 Apr 2010)

  New Revision: 27548

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

  Log:
    * test/test_open3.rb (test_commandline): skip the test with Shellwords on
      Windows.  see #1603

  Modified files:
    trunk/test/test_open3.rb

Index: test/test_open3.rb
===================================================================
--- test/test_open3.rb	(revision 27547)
+++ test/test_open3.rb	(revision 27548)
@@ -60,6 +60,7 @@
   end
 
   def test_commandline
+    skip "Shellwords is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
     commandline = Shellwords.join([RUBY, '-e', 'print "quux"'])
     Open3.popen3(commandline) {|i,o,e,t|
       assert_equal("quux", o.read)

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

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