class Origen::RegressionManager

Supports executing code regression testing.

Reference workspace used for comparison will automatically be populated based on tag selected (default: latest).

An instance of this class is hooked up to:

Origen.regression_manager

Basic Usage

options[:target] = %w{target1.rb target2.rb target3.rb}
Origen.regression_manager.run(options) do |options|
  Origen.target.loop(options) do |options|
    Origen.lsf.submit_origen_job "generate regression.list -t #{options[:target]}"
  end
end