origen_testers 0.52.7 → 0.52.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config/version.rb +1 -1
- data/lib/origen_testers/charz/session.rb +4 -2
- data/lib/origen_testers/charz.rb +2 -2
- data/lib/origen_testers/smartest_based_tester/base/limits_file.rb +3 -1
- data/lib/origen_testers/smartest_based_tester/base/test_method.rb +2 -1
- data/lib/origen_testers/smartest_based_tester/v93k_smt8/limits_workbook.rb +4 -4
- data/lib/origen_testers/test/custom_test_interface.rb +25 -0
- data/lib/origen_testers/test/interface.rb +7 -3
- data/program/custom_tests.rb +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fecbbfe63f95674c499382fd6003113ce274998692bcf5187b44e41db306e0f1
|
4
|
+
data.tar.gz: 236168668b3274d70f5febf60f4bbcfa1b1a26db15a12e9dc5d6337b9db49550
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40b214d23816832c4d95d7e97edfba66df653c6e8627bdf9edda2c4548651104634b42f263c992838fc1c02e1feb87400f32bfd97827a9ff07d6e1009f8c9e7c
|
7
|
+
data.tar.gz: 469295bf704a457ac2496856f0bb59c02690ca6baa4bdfbdb2de8cfb6345af7024d28fa8b96992f2fac07c21d5ed9f150ba106a13e42c99259378823faff47b3
|
data/config/version.rb
CHANGED
@@ -73,10 +73,12 @@ module OrigenTesters
|
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
76
|
-
def current_instance
|
76
|
+
def current_instance(options = {})
|
77
77
|
instance = @current_instance || instances.first
|
78
78
|
if instance.nil? && @stored_instance
|
79
|
-
|
79
|
+
unless options[:stored_instance_valid]
|
80
|
+
Origen.log.deprecate '@current_instance had to source @stored_instance. This likely means charz_session.<some_attr> is being queried when the newer charz_instance.<some_attr> should be instead'
|
81
|
+
end
|
80
82
|
instance = @stored_instance
|
81
83
|
end
|
82
84
|
instance
|
data/lib/origen_testers/charz.rb
CHANGED
@@ -42,8 +42,8 @@ module OrigenTesters
|
|
42
42
|
# the instance to be used is no longer set, so instead of referencing the session, use the one that we've
|
43
43
|
# stored already
|
44
44
|
def charz_instance
|
45
|
-
unless charz_session.current_instance.nil?
|
46
|
-
set_charz_instance(charz_session.current_instance)
|
45
|
+
unless charz_session.current_instance(stored_instance_valid: true).nil?
|
46
|
+
set_charz_instance(charz_session.current_instance(stored_instance_valid: true))
|
47
47
|
end
|
48
48
|
@charz_instance
|
49
49
|
end
|
@@ -129,7 +129,9 @@ module OrigenTesters
|
|
129
129
|
end
|
130
130
|
if sbin = set_result.find(:softbin)
|
131
131
|
o[:bin_s_num] = sbin.to_a[0] || o[:bin_s_num]
|
132
|
-
o[:bin_s_name]
|
132
|
+
if o[:bin_s_name].nil?
|
133
|
+
o[:bin_s_name] = bin_names[:soft][sbin.to_a[0]][:name]
|
134
|
+
end
|
133
135
|
end
|
134
136
|
end
|
135
137
|
delayed = on_fail.find(:delayed)
|
@@ -2,7 +2,7 @@ module OrigenTesters
|
|
2
2
|
module SmartestBasedTester
|
3
3
|
class Base
|
4
4
|
class TestMethod
|
5
|
-
FORMAT_TYPES = [:current, :voltage, :time, :string, :integer, :double, :boolean, :class, :list_strings, :list_classes]
|
5
|
+
FORMAT_TYPES = [:current, :voltage, :time, :frequency, :string, :integer, :double, :boolean, :class, :list_strings, :list_classes]
|
6
6
|
|
7
7
|
# Returns the object representing the test method library that the
|
8
8
|
# given test method is defined in
|
@@ -121,6 +121,7 @@ module OrigenTesters
|
|
121
121
|
end
|
122
122
|
|
123
123
|
def handle_val_type(val, type, attr)
|
124
|
+
return val if val == '' && !tester.smt8?
|
124
125
|
case type
|
125
126
|
when :current, 'CURR'
|
126
127
|
"#{val}[A]"
|
@@ -115,16 +115,16 @@ module OrigenTesters
|
|
115
115
|
def add_bin_sheets(spreadsheet)
|
116
116
|
table = spreadsheet.table 'Software_Bins'
|
117
117
|
row = table.row
|
118
|
-
row.cell 'Software Bin'
|
119
118
|
row.cell 'Software Bin Name'
|
119
|
+
row.cell 'Software Bin'
|
120
120
|
row.cell 'Hardware Bin'
|
121
121
|
row.cell 'Result'
|
122
122
|
row.cell 'Color'
|
123
123
|
row.cell 'Priority'
|
124
124
|
@softbins.each do |sbin, attrs|
|
125
125
|
row = table.row
|
126
|
-
row.cell sbin
|
127
126
|
row.cell attrs[:name]
|
127
|
+
row.cell sbin
|
128
128
|
row.cell attrs[:bin]
|
129
129
|
row.cell attrs[:result]
|
130
130
|
row.cell attrs[:color]
|
@@ -134,13 +134,13 @@ module OrigenTesters
|
|
134
134
|
# Write out the bin table
|
135
135
|
table = spreadsheet.table 'Hardware_Bins'
|
136
136
|
row = table.row
|
137
|
-
row.cell 'Hardware Bin'
|
138
137
|
row.cell 'Hardware Bin Name'
|
138
|
+
row.cell 'Hardware Bin'
|
139
139
|
row.cell 'Result'
|
140
140
|
@bins.each do |bin, attrs|
|
141
141
|
row = table.row
|
142
|
-
row.cell bin
|
143
142
|
row.cell attrs[:name]
|
143
|
+
row.cell bin
|
144
144
|
row.cell attrs[:result]
|
145
145
|
end
|
146
146
|
end
|
@@ -47,6 +47,13 @@ module OrigenTesters
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
def custom_d(name, options = {})
|
51
|
+
name = "custom_d_#{name}".to_sym
|
52
|
+
if tester.v93k?
|
53
|
+
ti = test_methods.my_tml.test_d
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
50
57
|
def custom_hash(name, options = {})
|
51
58
|
name = "custom_hash_#{name}".to_sym
|
52
59
|
if tester.v93k? && tester.smt8?
|
@@ -129,6 +136,24 @@ module OrigenTesters
|
|
129
136
|
end
|
130
137
|
}
|
131
138
|
},
|
139
|
+
test_d: {
|
140
|
+
tester_state: [:string, 'CONNECTED', %w(CONNECTED UNCHANGED)],
|
141
|
+
test_name: [:string, 'Functional'],
|
142
|
+
current_arg: [:current, 1],
|
143
|
+
current_no_default: [:current, ''],
|
144
|
+
voltage_arg: [:voltage, 1.2],
|
145
|
+
voltage_no_default: [:voltage, ''],
|
146
|
+
time_arg: [:time, 10],
|
147
|
+
time_no_default: [:time, ''],
|
148
|
+
frequency_arg: [:frequency, 1_000_000],
|
149
|
+
frequency_no_default: [:frequency, ''],
|
150
|
+
integer_arg: [:integer, 5.22],
|
151
|
+
integer_no_default: [:integer, ''],
|
152
|
+
double_arg: [:double, '5.22'],
|
153
|
+
double_no_default: [:double, ''],
|
154
|
+
boolean_arg: [:boolean, true],
|
155
|
+
boolean_no_default: [:boolean, '']
|
156
|
+
},
|
132
157
|
test_hash: {
|
133
158
|
# Parameters can be defined with an underscored symbol as the name, this can be used
|
134
159
|
# if the C++ implementation follows the standard V93K convention of calling the attribute
|
@@ -85,9 +85,11 @@ module OrigenTesters
|
|
85
85
|
# this case.
|
86
86
|
my_type_check_test: {
|
87
87
|
# [OPTIONAL] The C++ test method class name can be overridden from the default like this:
|
88
|
-
class_name:
|
89
|
-
int:
|
90
|
-
double:
|
88
|
+
class_name: 'MyHashExampleClass',
|
89
|
+
int: [:integer, 1],
|
90
|
+
double: [:double, 1.0],
|
91
|
+
int_no_default: [:integer],
|
92
|
+
double_no_default: [:double]
|
91
93
|
}
|
92
94
|
end
|
93
95
|
|
@@ -303,6 +305,8 @@ module OrigenTesters
|
|
303
305
|
tm = test_methods.my_type_check.my_type_check_test
|
304
306
|
tm.int = '1'
|
305
307
|
tm.double = '1.0'
|
308
|
+
tm.int_no_default = ''
|
309
|
+
tm.double_no_default = ''
|
306
310
|
ts = test_suites.run(name, options)
|
307
311
|
ts.test_method = tm
|
308
312
|
flow.test ts, options
|
data/program/custom_tests.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: origen_testers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.52.
|
4
|
+
version: 0.52.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen McGinty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: origen
|
@@ -617,7 +617,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
617
617
|
- !ruby/object:Gem::Version
|
618
618
|
version: '0'
|
619
619
|
requirements: []
|
620
|
-
rubygems_version: 3.
|
620
|
+
rubygems_version: 3.4.10
|
621
621
|
signing_key:
|
622
622
|
specification_version: 4
|
623
623
|
summary: This plugin provides Origen tester models to drive ATE type testers like
|