Sha256: b2f3543ba867df4eb77a5b8a36f8c4e660a5acf00ef459ea7501fce662f83f35

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

# -*- coding: utf-8 -*-
# Copyright (C) 2010, 2011 Rocky Bernstein <rockyb@rubyforge.net>
require_relative '../base/subsubcmd'
require_relative '../base/subsubmgr'

class Trepan::SubSubcommand::SetTrace < Trepan::SubSubcommandMgr 
  unless defined?(HELP)
    Trepanning::Subcommand.set_name_prefix(__FILE__, self)
    HELP = <<-EOH
Set tracing of various sorts.

The types of tracing include events from the trace buffer, or printing
those events.

See "help #{PREFIX.join(' ')} *" for a list of subcommands or "help #{PREFIX.join(' ')} <name>" 
for help on a particular trace subcommand.
    EOH
    IN_LIST    = true
    MIN_ABBREV = 'tr'.size
    SHORT_HELP = 'Set tracing of various sorts.'
  end

end

if __FILE__ == $0
  # Demo it.
  require_relative '../../mock'
  dbgr, cmd = MockDebugger::setup('set')
  cmds = dbgr.core.processor.commands
  set_cmd = cmds['set']
  command = Trepan::SubSubcommand::SetTrace.new(dbgr.core.processor, 
                                               set_cmd)
  set_cmd.instance_variable_set('@last_args', command.class.const_get('CMD'))
  # require_relative '../../../lib/trepanning'
  # Trepan.debug
  command.run(command.class.const_get('PREFIX'))
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
trepanning-2.15.35 processor/command/set_subcmd/trace.rb
trepanning-1.93.35 processor/command/set_subcmd/trace.rb
trepanning-2.15.33 processor/command/set_subcmd/trace.rb
trepanning-1.93.32 processor/command/set_subcmd/trace.rb
trepanning-0.1.6 processor/command/set_subcmd/trace.rb
trepanning-0.1.4 processor/command/set_subcmd/trace.rb