Sha256: d46e35c29fb95cbb4ada075439c7f23ff3f70bcc5b91881878eb5b29a6299f97

Contents?: true

Size: 872 Bytes

Versions: 3

Compression:

Stored size: 872 Bytes

Contents

#!/usr/bin/env ruby
require 'test/unit'

# begin require 'rubygems' rescue LoadError end
# require 'ruby-debug'; Debugger.start

# Test simple thread commands
class TestInfoThread < Test::Unit::TestCase

  @@SRC_DIR = File.join(Dir.pwd, File.dirname(__FILE__)) unless
    defined?(@@SRC_DIR)

  require File.join(@@SRC_DIR, 'helper')
  include TestHelper

  def test_basic
    testname='info-thread'
    Dir.chdir(@@SRC_DIR) do 
       filter = Proc.new{|got_lines, correct_lines|
         [got_lines, correct_lines].each do |a|
          a.each do |s|
            s.sub!(/Thread:0x[0-9a-f]+/, 'Thread:0x12345678')
          end
        end
       }
      script = File.join('data', testname + '.cmd')
      assert_equal(true, 
                   run_debugger(testname,
                                "--script #{script} -- ./gcd.rb 3 5", nil, filter))
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
debugger-1.0.0 test/test-info-thread.rb
debugger-1.0.0.rc2 test/test-info-thread.rb
debugger-1.0.0.rc1 test/test-info-thread.rb