Sha256: 0a2c9de1eede1c9ffdf4287912fb2fcc94db1b2b2b7ec57436276ae4f95fe216
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
origen_testers-0.13.2 | lib/origen_testers/igxl_based_tester/ultraflex/custom_test_instance.rb |
origen_testers-0.10.0 | lib/origen_testers/igxl_based_tester/ultraflex/custom_test_instance.rb |