Sha256: 0e8967dba782e54a9d42cacece616c5627aced67667e9d109e38a4915f89fc96
Contents?: true
Size: 1020 Bytes
Versions: 13
Compression:
Stored size: 1020 Bytes
Contents
#!/usr/bin/env ruby # encoding: UTF-8 require File.expand_path('../test_helper', __FILE__) require 'stringio' require 'fileutils' require 'tmpdir' require_relative 'prime' # -- Tests ---- class PrinterCallTreeTest < TestCase def setup # WALL_TIME so we can use sleep in our test and get same measurements on linux and windows RubyProf::measure_mode = RubyProf::WALL_TIME @result = RubyProf.profile do run_primes(1000, 5000) end end def test_call_tree_string printer = RubyProf::CallTreePrinter.new(@result) printer.print(:profile => "lolcat", :path => Dir.tmpdir) main_output_file_name = File.join(Dir.tmpdir, "lolcat.callgrind.out.#{$$}") assert(File.exist?(main_output_file_name)) output = File.read(main_output_file_name) assert_match(/fn=Object::find_primes/i, output) assert_match(/events: wall_time/i, output) refute_match(/d\d\d\d\d\d/, output) # old bug looked [in error] like Object::run_primes(d5833116) end end
Version data entries
13 entries across 13 versions & 1 rubygems