aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-20 15:41:00 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-20 15:41:00 +0000
commit592e1108a89b4661a54864c9908029ade4cb612d (patch)
tree247b5e960343605297813e2a4cc680cd3ef5aeab /spec
parent90d598258c6aa38900329d67cabe174e7972c757 (diff)
downloadruby-592e1108a89b4661a54864c9908029ade4cb612d.tar.gz
Revert r64471
* This reverts commit 9ab04897bd06767f773b35c6958a0551981093aa: "don't run specs add at r64409 on Windows" * It doesn't seem to help: http://mswinci.japaneast.cloudapp.azure.com/vc12-x64/ruby-trunk/recent.html git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/library/conditionvariable/wait_spec.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/spec/ruby/library/conditionvariable/wait_spec.rb b/spec/ruby/library/conditionvariable/wait_spec.rb
index acea58f5c3..d4950a7b27 100644
--- a/spec/ruby/library/conditionvariable/wait_spec.rb
+++ b/spec/ruby/library/conditionvariable/wait_spec.rb
@@ -23,7 +23,6 @@ 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
@@ -119,5 +118,4 @@ describe "ConditionVariable#wait" do
cv.broadcast
threads.each(&:join)
end
- end
end