aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorshirosaki <shirosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-07 14:10:25 +0000
committershirosaki <shirosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-07 14:10:25 +0000
commitfc83ebb037bfecfd5abfd6dc92517870d65541b3 (patch)
treed35a08a18ffa4e0a097d0ec1f2c4354e35d7d51b /test
parent5638bbdab693d619c29a5e651b28bca542191931 (diff)
downloadruby-fc83ebb037bfecfd5abfd6dc92517870d65541b3.tar.gz
* test/ruby/test_thread.rb
(TestThreadGroup#test_thread_timer_and_interrupt): skip on Windows. Process.kill cannot kill a subprocess if CREATE_NEW_PROCESS_GROUP flag is not specified in a call to CreateProcessW(). * win32/win32.c (CreateChild): revert the usage of CREATE_NEW_PROCESS_GROUP flag for compatibility. [ruby-core:43245][Bug #6131] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_thread.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb
index 8a3286871c..8d6a87b705 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -681,6 +681,7 @@ class TestThreadGroup < Test::Unit::TestCase
end
def test_thread_timer_and_interrupt
+ skip 'Process.kill cannot kill a subprocess' if /mswin|mingw/ =~ RUBY_PLATFORM
bug5757 = '[ruby-dev:44985]'
t0 = Time.now.to_f
pid = nil