2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
|
|
|
require_relative 'shared/exit'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "Thread#terminate" do
|
2018-10-10 11:39:46 +00:00
|
|
|
# This spec randomly kills mspec worker like: https://ci.appveyor.com/project/ruby/ruby/builds/19390874/job/wv1bsm8skd4e1pxl
|
|
|
|
# TODO: Investigate the cause or at least print helpful logs, and remove this `platform_is_not` guard.
|
2018-10-10 11:35:58 +00:00
|
|
|
platform_is_not :mingw do
|
|
|
|
it_behaves_like :thread_exit, :terminate
|
|
|
|
end
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|