Disable test on 1.8.7, since workaround is to allow blocking on that version

This commit is contained in:
Marc Siegel 2013-12-26 13:51:03 -05:00
parent d2f8af03eb
commit 90a9f37da4
1 changed files with 26 additions and 24 deletions

View File

@ -158,6 +158,7 @@ module ProcessShared
end end
end end
unless RUBY_VERSION == '1.8.7'
it 'allows other threads in a process to continue while waiting' do it 'allows other threads in a process to continue while waiting' do
start = Time.now.to_f start = Time.now.to_f
sem = Semaphore.new sem = Semaphore.new
@ -191,3 +192,4 @@ module ProcessShared
end end
end end
end end
end