1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

spec/ruby/core/process/times_spec.rb: add an output code for debugging

This commit is contained in:
Yusuke Endoh 2020-01-25 19:48:10 +09:00
parent b4711a0fa0
commit 4396ced07d

View file

@ -23,7 +23,14 @@ describe "Process.times" do
times = 1000.times.map { Process.times }
times.count { |t| !('%.6f' % t.utime).end_with?('000') }.should > 0
times.count { |t| !('%.6f' % t.stime).end_with?('000') }.should > 0
n = times.count { |t| !('%.6f' % t.stime).end_with?('000') }
if n == 0
# temporal debugging code for FreeBSD: https://rubyci.org/logs/rubyci.s3.amazonaws.com/freebsd11zfs/ruby-master/log/20200125T093004Z.fail.html.gz
puts "DEBUG OUTPUT"
p(*times)
puts "DEBUG OUTPUT END"
end
n.should > 0
end
end
end