Sha256: 164f71d3721d510ffb57c407429814270638a867ba160ecaba4a8fb2591477aa

Contents?: true

Size: 976 Bytes

Versions: 12

Compression:

Stored size: 976 Bytes

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

require File.expand_path('../test_helper', __FILE__)
require 'fileutils'
require 'tmpdir'
require_relative 'prime'

# --  Tests ----
class PrinterCallTreeTest < TestCase
  def setup
    super
    # WALL_TIME so we can use sleep in our test and get same measurements on linux and windows
    @result = RubyProf::Profile.profile(measure_mode: RubyProf::WALL_TIME) do
      run_primes(1000, 5000)
    end
  end

  def test_call_tree_string
    printer = RubyProf::CallTreePrinter.new(@result)

    printer.print(:path => Dir.tmpdir)
    main_output_file_name = File.join(Dir.tmpdir, "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

12 entries across 12 versions & 2 rubygems

Version Path
ruby-prof-1.7.1-x64-mingw-ucrt test/printer_call_tree_test.rb
ruby-prof-1.7.1 test/printer_call_tree_test.rb
ruby-prof-1.7.0-x64-mingw-ucrt test/printer_call_tree_test.rb
ruby-prof-1.7.0 test/printer_call_tree_test.rb
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/ruby-prof-1.6.3/test/printer_call_tree_test.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/ruby-prof-1.6.3/test/printer_call_tree_test.rb
ruby-prof-1.6.3-x64-mingw-ucrt test/printer_call_tree_test.rb
ruby-prof-1.6.3 test/printer_call_tree_test.rb
ruby-prof-1.6.2-x64-mingw-ucrt test/printer_call_tree_test.rb
ruby-prof-1.6.2 test/printer_call_tree_test.rb
ruby-prof-1.6.1 test/printer_call_tree_test.rb
ruby-prof-1.6.1-x64-mingw-ucrt test/printer_call_tree_test.rb