ruby-changes:25076
From: usa <ko1@a...>
Date: Wed, 10 Oct 2012 15:16:34 +0900 (JST)
Subject: [ruby-changes:25076] usa:r37128 (trunk): * test/ruby/test_process.rb (TestProcess#test_execopts_gid): skip on
usa 2012-10-10 15:14:48 +0900 (Wed, 10 Oct 2012) New Revision: 37128 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37128 Log: * test/ruby/test_process.rb (TestProcess#test_execopts_gid): skip on windows because the platform does not have Process.group method. patched by Jon Forums in [ruby-core:47878] [Bug #7133]. Modified files: trunk/ChangeLog trunk/test/ruby/test_process.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 37127) +++ ChangeLog (revision 37128) @@ -1,3 +1,9 @@ +Wed Oct 10 15:12:48 2012 NAKAMURA Usaku <usa@r...> + + * test/ruby/test_process.rb (TestProcess#test_execopts_gid): skip on + windows because the platform does not have Process.group method. + patched by Jon Forums in [ruby-core:47878] [Bug #7133]. + Tue Oct 9 23:18:03 2012 Nobuyoshi Nakada <nobu@r...> * test/ruby/envutil.rb (assert_file, assert_file_not): more Index: test/ruby/test_process.rb =================================================================== --- test/ruby/test_process.rb (revision 37127) +++ test/ruby/test_process.rb (revision 37128) @@ -1501,6 +1501,7 @@ end def test_execopts_gid + skip "Process.groups not implemented on Windows platform" if windows? feature6975 = '[ruby-core:47414]' [30000, *Process.groups.map {|g| g = Etc.getgrgid(g); [g.name, g.gid]}].each do |group, gid| -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/