Sha256: 62dd16ee1ae8556e5e37852194775d0f348277fa73d126ad9239b19fa73052a0

Contents?: true

Size: 1.76 KB

Versions: 6

Compression:

Stored size: 1.76 KB

Contents

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

require File.expand_path('../test_helper', __FILE__)

# tests for bugs reported by users
class YarvTest < TestCase
  def setup
    RubyProf::measure_mode = RubyProf::WALL_TIME
    define_methods
  end

  def test_array_push_unoptimized
    a = nil
    result = RubyProf.profile do
      a = self.array_push_unoptimized
    end
    assert_equal 2, a.length
    assert_equal ["YarvTest#test_array_push_unoptimized", "YarvTest#array_push_unoptimized", 'Array#<<', "Array#push"], result.threads.first.methods.map(&:full_name)
  end

  def test_array_push_optimized
    a = nil
    result = RubyProf.profile do
      a = self.array_push_optimized
    end
    assert_equal(2, a.length)
    if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3.1')
      assert_equal(["YarvTest#test_array_push_optimized", "YarvTest#array_push_optimized", "Array#push"], result.threads.first.methods.map(&:full_name))
    else
      assert_equal(["YarvTest#test_array_push_optimized", "YarvTest#array_push_optimized", "Array#<<", "Array#push"], result.threads.first.methods.map(&:full_name))
    end
  end

  private

  def define_methods
    return if respond_to?(:array_push_optimized)
    old_compile_option = RubyVM::InstructionSequence.compile_option
    RubyVM::InstructionSequence.compile_option = {
      :trace_instruction => true,
      :specialized_instruction => false
    }
    self.class.class_eval <<-"EOM"
      def array_push_unoptimized
        a = []
        a << 1
        a.push 2
      end
    EOM
    RubyVM::InstructionSequence.compile_option = old_compile_option
    self.class.class_eval <<-"EOM"
      def array_push_optimized
        a = []
        a << 1
        a.push 2
      end
    EOM
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-prof-1.5.0-x64-mingw-ucrt test/yarv_test.rb
ruby-prof-1.5.0 test/yarv_test.rb
ruby-prof-1.4.5-x64-mingw-ucrt test/yarv_test.rb
ruby-prof-1.4.5 test/yarv_test.rb
ruby-prof-1.4.4-x64-mingw-ucrt test/yarv_test.rb
ruby-prof-1.4.4 test/yarv_test.rb