[前][次][番号順一覧][スレッド一覧]

ruby-changes:52263

From: naruse <ko1@a...>
Date: Sun, 19 Aug 2018 22:25:17 +0900 (JST)
Subject: [ruby-changes:52263] naruse:r64471 (trunk): don't run specs add at r64409 on Windows

naruse	2018-08-19 22:25:11 +0900 (Sun, 19 Aug 2018)

  New Revision: 64471

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64471

  Log:
    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

  Modified files:
    trunk/spec/ruby/library/conditionvariable/wait_spec.rb
Index: spec/ruby/library/conditionvariable/wait_spec.rb
===================================================================
--- spec/ruby/library/conditionvariable/wait_spec.rb	(revision 64470)
+++ spec/ruby/library/conditionvariable/wait_spec.rb	(revision 64471)
@@ -23,6 +23,7 @@ describe "ConditionVariable#wait" do https://github.com/ruby/ruby/blob/trunk/spec/ruby/library/conditionvariable/wait_spec.rb#L23
     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 https://github.com/ruby/ruby/blob/trunk/spec/ruby/library/conditionvariable/wait_spec.rb#L119
     cv.broadcast
     threads.each(&:join)
   end
+  end
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]