Sha256: 467bf539f8591e8d04eda4a3d6a5ac180a09fe7e20e2005d4a3049a69af2ff17

Contents?: true

Size: 1.05 KB

Versions: 4

Compression:

Stored size: 1.05 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::SetAuto < Trepan::SubSubcommandMgr
  unless defined?(HELP)
    Trepanning::Subcommand.set_name_prefix(__FILE__, self)
    HELP   = <<-EOH
Set controls for things with some sort of "automatic" default behavior.

See "#{PREFIX.join(' ')} *" for a list of subcommands or "#{PREFIX.join(' ')} <name>" 
for help on a particular trace subcommand.
    EOH
    SHORT_HELP = 'Set controls for some "automatic" default behaviors'
  end
end

if __FILE__ == $0
  require_relative '../../mock'
  dbgr, cmd = MockDebugger::setup('set')
  cmds = dbgr.core.processor.commands
  set_cmd = cmds['set']
  command = Trepan::SubSubcommand::SetAuto.new(dbgr.core.processor, 
                                               set_cmd)
  cmd_args = ['set', name]
  set_cmd.instance_variable_set('@last_args', cmd_args)
  # require_relative '../../../lib/trepanning'
  # Trepan.debug
  command.run(cmd_args)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
trepanning-1.93.35 processor/command/set_subcmd/auto.rb
trepanning-1.93.32 processor/command/set_subcmd/auto.rb
trepanning-0.1.6 processor/command/set_subcmd/auto.rb
trepanning-0.1.4 processor/command/set_subcmd/auto.rb