Sha256: 0a61d88788b1a64d6bdcf53509a67ddc7268377a9ee400dd56d3d3b633d066bb
Contents?: true
Size: 796 Bytes
Versions: 96
Compression:
Stored size: 796 Bytes
Contents
# This shim is temporary to help NXP transition to Origen from # our original internal version (RGen) if defined? RGen::ORIGENTRANSITION require 'rgen/application/runner' else require 'origen/application/runner' end module Origen class Application class Runner alias_method :orig_launch, :launch # Patch this to allow write: false to be given as an option when # generating a test program. When supplied and set to false, the program # output files will not be written and only a flow model will be generated. def launch(options = {}) if options.key?(:write) OrigenTesters::Interface.write = options[:write] else OrigenTesters::Interface.write = true end orig_launch(options) end end end end
Version data entries
96 entries across 96 versions & 1 rubygems