origen_testers 0.13.0 → 0.13.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1859ed638c96827a6fe133d9ddb2ecd1953694fd
|
|
4
|
+
data.tar.gz: 612d84a3dde63d397dcb265c4e80781ea8649048
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bc863fd794ae1fb1308aa71fd66f4eae9414c74b3f42775a7faa3181c0456dbb5ee47d69f281b7ac3f4113e8074a869165c79a60e3bc12e127e4cfed4fa4fc9
|
|
7
|
+
data.tar.gz: 802fe75092cfe600f837ce285b719fa0504f7d0e9817cd4c8bc4e29c9641fc5e75bdf94cfd17f7c4a4b2b38c0cbbe4f57148e1d7d15cb8f500a11b7f600d441b
|
data/config/version.rb
CHANGED
|
@@ -12,6 +12,10 @@ module OrigenTesters
|
|
|
12
12
|
attr_accessor :default_channelmap
|
|
13
13
|
attr_accessor :default_testerconfig
|
|
14
14
|
attr_accessor :max_site
|
|
15
|
+
# permit modification of minimum repeat count
|
|
16
|
+
attr_accessor :min_repeat_loop
|
|
17
|
+
alias_method :min_repeat_count, :min_repeat_loop
|
|
18
|
+
alias_method :min_repeat_count=, :min_repeat_loop=
|
|
15
19
|
# NOTE: DO NOT USE THIS CLASS DIRECTLY ONLY USED AS PARENT FOR
|
|
16
20
|
# DESIRED TESTER CLASS
|
|
17
21
|
|
|
@@ -58,11 +58,13 @@ module OrigenTesters
|
|
|
58
58
|
else
|
|
59
59
|
i = ''
|
|
60
60
|
end
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
if set_runtime_variables.size > 0
|
|
62
|
+
h << i + ' {'
|
|
63
|
+
set_runtime_variables.each do |var|
|
|
64
|
+
h << i + " @#{generate_flag_name(var.to_s)} = -1;"
|
|
65
|
+
end
|
|
66
|
+
h << i + ' }, open,"Init Flow Control Vars", ""'
|
|
64
67
|
end
|
|
65
|
-
h << i + ' }, open,"Init Flow Control Vars", ""'
|
|
66
68
|
h
|
|
67
69
|
end
|
|
68
70
|
|
|
@@ -15,6 +15,11 @@ module OrigenTesters
|
|
|
15
15
|
# configured to be off by default.
|
|
16
16
|
attr_reader :add_flow_enable
|
|
17
17
|
|
|
18
|
+
# permit modification of minimum repeat count
|
|
19
|
+
attr_accessor :min_repeat_loop
|
|
20
|
+
alias_method :min_repeat_count, :min_repeat_loop
|
|
21
|
+
alias_method :min_repeat_count=, :min_repeat_loop=
|
|
22
|
+
|
|
18
23
|
def initialize(options = {})
|
|
19
24
|
@max_repeat_loop = 65_535
|
|
20
25
|
@min_repeat_loop = 33
|
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.13.
|
|
4
|
+
version: 0.13.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen McGinty
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: origen
|
|
@@ -351,7 +351,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
351
351
|
version: 1.8.11
|
|
352
352
|
requirements: []
|
|
353
353
|
rubyforge_project:
|
|
354
|
-
rubygems_version: 2.
|
|
354
|
+
rubygems_version: 2.6.7
|
|
355
355
|
signing_key:
|
|
356
356
|
specification_version: 4
|
|
357
357
|
summary: This plugin provides Origen tester models to drive ATE type testers like
|