origen_std_lib 0.12.0 → 0.13.0
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/src/advantest/smt7/origen/origen.hpp +1 -1
- data/src/advantest/smt8/origen/common/Origen.java +20 -13
- data/src/advantest/smt8/origen/test_methods/Base.java +1 -1
- data/src/advantest/smt8/origen/test_methods/DC_Measurement.java +1 -1
- data/src/advantest/smt8/origen/test_methods/Functional_test.java +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 14b8444afc790a16b209561fafbdf315859448bdaa3b56672fa49bf9a3d626f6
|
|
4
|
+
data.tar.gz: 33df693bbc10b1d9b37fb8da1afb27947f029a46fc65ac74e88652cb9bcf53b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8673d212602dcc57418e3d59da651cd76feeb430dc279bff640be8bb13de98782271bea9f0cffc451c1077d63e96c988dcebf60cd4629a83de81cfab750710b
|
|
7
|
+
data.tar.gz: dc9b3b4278b940f2e683c00f95835b143dbc812ab146c1d0f858fc4a229425094bd9d959c0b4e206cea6a493524f821a5350930cdc8503de41daaf169caaba65
|
data/config/version.rb
CHANGED
|
@@ -165,10 +165,12 @@ public class Origen {
|
|
|
165
165
|
*/
|
|
166
166
|
public static MultiSiteString lotid() {
|
|
167
167
|
if (!_lotidSet) {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
168
|
+
|
|
169
|
+
MultiSiteString lot_id = new MultiSiteString("TR7T7290W25D0");
|
|
170
|
+
|
|
171
|
+
if(!context.testProgram().variables().getString("mi8_recipe_version").get().isEmpty()) {
|
|
172
|
+
lot_id = context.testProgram().variables().getString("STDF.WAFER_ID"); //for use with prober
|
|
173
|
+
}
|
|
172
174
|
|
|
173
175
|
MultiSiteString batch_id = new MultiSiteString();
|
|
174
176
|
for (int site : context.getActiveSites()) {
|
|
@@ -222,12 +224,13 @@ public class Origen {
|
|
|
222
224
|
*/
|
|
223
225
|
public static MultiSiteLong wafer() {
|
|
224
226
|
if (!_waferSet) {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
// MultiSiteString wafer_id = new MultiSiteString("TR7T7290W55D0"); // for debug
|
|
228
|
-
// purpose
|
|
227
|
+
|
|
228
|
+
MultiSiteString wafer_id = new MultiSiteString("TR7T7290W55D0");
|
|
229
229
|
|
|
230
|
-
|
|
230
|
+
if(!context.testProgram().variables().getString("mi8_recipe_version").get().isEmpty()) {
|
|
231
|
+
wafer_id = context.testProgram().variables().getString("STDF.WAFER_ID"); //for use with prober
|
|
232
|
+
// Expect to return something like "TR7T7290W25D0)", where 25 is the wafer number
|
|
233
|
+
}
|
|
231
234
|
|
|
232
235
|
MultiSiteLong mslWnum = new MultiSiteLong(0);
|
|
233
236
|
for (int site : context.getActiveSites()) {
|
|
@@ -254,10 +257,14 @@ public class Origen {
|
|
|
254
257
|
|
|
255
258
|
/** Query the X and Y coordinates from the test system and set them for all sites. */
|
|
256
259
|
public static void setXY() {
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
MultiSiteLong y_coord =
|
|
260
|
-
|
|
260
|
+
|
|
261
|
+
MultiSiteLong x_coord = new MultiSiteLong(90); // for debug purpose
|
|
262
|
+
MultiSiteLong y_coord = new MultiSiteLong(100); // for debug purpose
|
|
263
|
+
|
|
264
|
+
if(!context.testProgram().variables().getString("mi8_recipe_version").get().isEmpty()) {
|
|
265
|
+
x_coord =context.testProgram().variables().getLong("STDF.X_COORD"); //for use with probe
|
|
266
|
+
y_coord =context.testProgram().variables().getLong("STDF.Y_COORD"); //for use with probe
|
|
267
|
+
}
|
|
261
268
|
|
|
262
269
|
// MultiSiteLong x_coord = new MultiSiteLong(90); // for debug purpose
|
|
263
270
|
// MultiSiteLong y_coord = new MultiSiteLong(100); // for debug purpose
|
|
@@ -24,7 +24,7 @@ public class Base extends TestMethod {
|
|
|
24
24
|
public MultiSiteLong setOnFailFlags;
|
|
25
25
|
// When set to true the tester will never be released by Origen code, though your application
|
|
26
26
|
// test method code is still free to do so if you want
|
|
27
|
-
public Boolean
|
|
27
|
+
public Boolean syncPar = false;
|
|
28
28
|
/**
|
|
29
29
|
* The log level that will be used during the execution of the TP. Change the value here to get
|
|
30
30
|
* more, or less logging info
|
|
@@ -263,7 +263,7 @@ public class DC_Measurement extends Base {
|
|
|
263
263
|
|
|
264
264
|
// Assume for now that if force pass is set then branching decision could be dependent on the
|
|
265
265
|
// result of this test, in future add another attribute to control async processing on/off
|
|
266
|
-
if (!
|
|
266
|
+
if (!syncPar && !forcePass) {
|
|
267
267
|
releaseTester();
|
|
268
268
|
}
|
|
269
269
|
|
|
@@ -441,7 +441,7 @@ public class Functional_test extends Base {
|
|
|
441
441
|
|
|
442
442
|
// Assume for now that if force pass is set then branching decision could be dependent on the
|
|
443
443
|
// result of this test, in future add another attribute to control async processing on/off
|
|
444
|
-
if (!
|
|
444
|
+
if (!syncPar && !forcePass) {
|
|
445
445
|
releaseTester();
|
|
446
446
|
}
|
|
447
447
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: origen_std_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen McGinty
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: origen
|
|
@@ -131,8 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
132
|
version: 1.8.11
|
|
133
133
|
requirements: []
|
|
134
|
-
|
|
135
|
-
rubygems_version: 2.7.7
|
|
134
|
+
rubygems_version: 3.1.4
|
|
136
135
|
signing_key:
|
|
137
136
|
specification_version: 4
|
|
138
137
|
summary: Test program interface drivers for the Origen tester standard library
|