Sha256: a295872af8a00e477c04f426c7515272fb714f8c0bf6fe73a5a6bb59549f24e1
Contents?: true
Size: 1.16 KB
Versions: 91
Compression:
Stored size: 1.16 KB
Contents
module OrigenTesters module IGXLBasedTester class UltraFLEX require 'origen_testers/igxl_based_tester/base/custom_test_instance' class CustomTestInstance < Base::CustomTestInstance # Give all UltraFLEX test instances the ability to contain limits, these will # be rendered to Use-limit lines in the flow attr_accessor :lo_limit, :hi_limit, :scale, :units, :defer_limits, :lo, :hi # Attributes for each test instance line, first few are named directly TEST_INSTANCE_ATTRS = %w( test_name proc_type proc_name proc_called_as dc_category dc_selector ac_category ac_selector time_sets edge_sets pin_levels mixedsignal_timing overlay ) # Attributes for additional test instance arguments beyond those described above TEST_INSTANCE_EXTRA_ARGS = 130 TEST_INSTANCE_DEFAULTS = { proc_type: 'Other', proc_called_as: 'VB DLL' } TEST_INSTANCE_ALIASES = { name: :test_name, time_set: :time_sets, timeset: :time_sets, timesets: :time_sets } define end end end end
Version data entries
91 entries across 91 versions & 1 rubygems