clock_gettime_spec.rb: skip a new spec broken on solaris

introduced in r66622, but this does not succeed on Solaris

https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11x/ruby-trunk/log/20181229T002409Z.fail.html.gz

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66624 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-12-29 01:51:34 +00:00
Родитель c027f22443
Коммит 40b689c71a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1,7 +1,7 @@
require_relative '../../spec_helper'
describe "Process.clock_gettime" do
platform_is_not :windows do
platform_is_not :windows, :solaris do
it 'can be called with all declared clocks' do
Process.constants.select { |c| c.to_s.start_with?('CLOCK_') }.each do |c|
Process.clock_gettime(Process.const_get(c)).should be_an_instance_of(Float)