summaryrefslogtreecommitdiff
path: root/spec/ruby
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-19 13:25:11 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-19 13:25:11 +0000
commit9ab04897bd06767f773b35c6958a0551981093aa (patch)
tree799fc3daaa9fc78495251bd08086068e9a05b792 /spec/ruby
parentd5c112ff4050e68263d38713e3458086e079c0d3 (diff)
don't run specs add at r64409 on Windows
Maybe it breaks http://mswinci.japaneast.cloudapp.azure.com/vc12-x64/ruby-trunk/log/20180817T095734Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby')
-rw-r--r--spec/ruby/library/conditionvariable/wait_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/ruby/library/conditionvariable/wait_spec.rb b/spec/ruby/library/conditionvariable/wait_spec.rb
index d4950a7b27..acea58f5c3 100644
--- a/spec/ruby/library/conditionvariable/wait_spec.rb
+++ b/spec/ruby/library/conditionvariable/wait_spec.rb
@@ -23,6 +23,7 @@ describe "ConditionVariable#wait" do
th.join
end
+ platform_is_not :windows do
it "reacquires the lock even if the thread is killed" do
m = Mutex.new
cv = ConditionVariable.new
@@ -118,4 +119,5 @@ describe "ConditionVariable#wait" do
cv.broadcast
threads.each(&:join)
end
+ end
end