Sha256: 42e71504ac6ec9c183c115aa97bdc90d69462f1a880adaf5fd174b8ee7aead25

Contents?: true

Size: 1.92 KB

Versions: 57

Compression:

Stored size: 1.92 KB

Contents

require 'optparse'
require 'pathname'

options = {}

opt_parser = OptionParser.new do |opts|
  opts.banner = <<-EOT
Run (execute a flow) of the last test program generated for the given target.

Usage: origen testers:run FLOW [options]
  EOT
  opts.on('--enable FLAG,FLAG', Array, 'Comma-separated list of flow flags to enable') { |flags| options[:flow_flags] = flags }
  opts.on('--job NAME', String, 'Job name to enable') { |job| options[:job] = job }
  opts.on('--fail ID,ID', Array, 'Comma-separated list of test IDs to fail') { |ids| options[:failed_test_ids] = ids }
  opts.on('-e', '--environment NAME', String, 'Override the default environment, NAME can be a full path or a fragment of an environment file name') { |e| options[:environment] = e }
  opts.on('-t', '--target NAME', String, 'Override the default target, NAME can be a full path or a fragment of a target file name') { |t| options[:target] = t }
  opts.on('-d', '--debugger', 'Enable the debugger') {  options[:debugger] = true }
  opts.on('-m', '--mode MODE', Origen::Mode::MODES, 'Force the Origen operating mode:', '  ' + Origen::Mode::MODES.join(', ')) { |_m| }
  opts.separator ''
  opts.on('-h', '--help', 'Show this message') { puts opts; exit 0 }
end

opt_parser.parse! ARGV

Origen.environment.temporary = options[:environment] if options[:environment]
Origen.target.temporary = options[:target] if options[:target]
# Origen.app.load_target!

program =  OrigenTesters.program

unless program
  puts 'Sorry, but there is no program model available for the current target, generate the program then retry'
  exit 1
end

unless ARGV.first
  if OrigenTesters.program.flows.keys.size == 1
    ARGV << OrigenTesters.program.flows.keys.first
  else
    puts 'You must supply the name of the flow to execute, the current program has these flows'
    puts OrigenTesters.program.flows.keys
    exit 1
  end
end

ARGV.each do |flow|
  OrigenTesters.program.flows[flow.to_sym].run(options)
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
origen_testers-0.52.8 lib/commands/run.rb
origen_testers-0.52.7 lib/commands/run.rb
origen_testers-0.52.6 lib/commands/run.rb
origen_testers-0.52.5 lib/commands/run.rb
origen_testers-0.52.4 lib/commands/run.rb
origen_testers-0.52.3 lib/commands/run.rb
origen_testers-0.52.1 lib/commands/run.rb
origen_testers-0.52.0 lib/commands/run.rb
origen_testers-0.51.5 lib/commands/run.rb
origen_testers-0.51.4 lib/commands/run.rb
origen_testers-0.51.3 lib/commands/run.rb
origen_testers-0.51.2 lib/commands/run.rb
origen_testers-0.51.1 lib/commands/run.rb
origen_testers-0.51.0 lib/commands/run.rb
origen_testers-0.50.0 lib/commands/run.rb
origen_testers-0.49.4 lib/commands/run.rb
origen_testers-0.49.3 lib/commands/run.rb
origen_testers-0.49.2 lib/commands/run.rb
origen_testers-0.49.1 lib/commands/run.rb
origen_testers-0.49.0 lib/commands/run.rb