origen_sim 0.16.0 → 0.16.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 +4 -4
- data/config/version.rb +1 -1
- data/lib/origen_sim/simulator.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51be12abd354fc71656f9fd5931460deecd27102072858c29eecac293eb01d1b
|
4
|
+
data.tar.gz: 26a6bccbbf6c72375853bcc8b5ed940e9484754e282b23699aec0c87d0fc4449
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00db8e5cd0f05f678a7acafed75edea1623db71175c40e0b51bdcf5c074a973a88e6ff31b32d7ff005560172bafa9fe6ae7eda78c55cf27d0742cbfae801537d
|
7
|
+
data.tar.gz: 4dcb3cf9b28e516d76270a7d7b3891f141b326b8dc55b3975d740bf5492edafbeca6889a05f07a7a5613c9dbbf01b1b1e01bbbe1bac229a1a053b78b7830a707
|
data/config/version.rb
CHANGED
data/lib/origen_sim/simulator.rb
CHANGED
@@ -486,6 +486,7 @@ module OrigenSim
|
|
486
486
|
# Starts up the simulator process
|
487
487
|
def start
|
488
488
|
@simulation_open = true
|
489
|
+
@pattern_starting_error_count = nil
|
489
490
|
@simulation = Simulation.new(wave_file_basename, view_wave_command)
|
490
491
|
simulations << @simulation
|
491
492
|
|
@@ -624,6 +625,7 @@ module OrigenSim
|
|
624
625
|
end
|
625
626
|
end
|
626
627
|
end
|
628
|
+
sync_up # Make sure the simulation is underway before proceeding
|
627
629
|
Origen.listeners_for(:simulation_startup).each(&:simulation_startup)
|
628
630
|
end
|
629
631
|
|
@@ -691,7 +693,7 @@ module OrigenSim
|
|
691
693
|
log '#' * 100
|
692
694
|
log '#' * 100
|
693
695
|
@running_pattern_name = name
|
694
|
-
@pattern_starting_error_count = error_count
|
696
|
+
@pattern_starting_error_count = @pattern_starting_error_count ? error_count : 0
|
695
697
|
@pattern_count ||= 0
|
696
698
|
# If running a flow, give the user some feedback about pass/fail status after
|
697
699
|
# each individual pattern has completed
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: origen_sim
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.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: 2019-
|
11
|
+
date: 2019-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: origen
|