From 11a381940b1cc546661fabc37c23c35404fc9a88 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sat, 28 Mar 2020 14:27:13 +0100 Subject: Remove debugging code --- spec/ruby/core/process/times_spec.rb | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'spec/ruby/core') diff --git a/spec/ruby/core/process/times_spec.rb b/spec/ruby/core/process/times_spec.rb index 28896a96ff..35a7f5b34c 100644 --- a/spec/ruby/core/process/times_spec.rb +++ b/spec/ruby/core/process/times_spec.rb @@ -23,14 +23,7 @@ describe "Process.times" do times = 1000.times.map { Process.times } times.count { |t| !('%.6f' % t.utime).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 + times.count { |t| !('%.6f' % t.stime).end_with?('000') }.should > 0 end end end -- cgit v1.2.3