Sha256: f49f8b0241fdf1be8b4befcf77b838a51680ac3d3a4132ec5bdd6a3a3ef5f44f
Contents?: true
Size: 1.15 KB
Versions: 5
Compression:
Stored size: 1.15 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 # 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
5 entries across 5 versions & 1 rubygems