summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-10 11:35:58 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-10 11:35:58 +0000
commitc7220bd3dea0a113b81f267cc3b656da7d7d7abb (patch)
tree58dd025c81d3b5e716b5c9d41d308fa07d2dab72 /spec
parent50281e8ca305204f60bef025ac5fb01a9ce46005 (diff)
terminate_spec.rb: exclude unstable spec for MinGW
This spec seems to randomly kill mspec worker. https://ci.appveyor.com/project/ruby/ruby/builds/19390874/job/wv1bsm8skd4e1pxl To make CI stable, let me exclude this for MinGW until we get some logs that help debugging or resolve that. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/core/thread/terminate_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/ruby/core/thread/terminate_spec.rb b/spec/ruby/core/thread/terminate_spec.rb
index cf6cab472b..e133d77d83 100644
--- a/spec/ruby/core/thread/terminate_spec.rb
+++ b/spec/ruby/core/thread/terminate_spec.rb
@@ -3,5 +3,7 @@ require_relative 'fixtures/classes'
require_relative 'shared/exit'
describe "Thread#terminate" do
- it_behaves_like :thread_exit, :terminate
+ platform_is_not :mingw do
+ it_behaves_like :thread_exit, :terminate
+ end
end