mesa_test 0.2.8 → 0.2.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/lib/mesa_test.rb +2 -2
- 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: 172f85140a56c125b375f0fe494ab7dc9d6b44aa961cc079429629edef524673
|
|
4
|
+
data.tar.gz: bd3bea53ddbde259e14e5cf59c7aa60303ed4127ae7a3db56c1ae75291de2b69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60b09d7027612c4a55ff96e2cc5fd864d15b8a5876b7e15144a4556eca1b026010e9ebceca745275b76f11477c6d171802c489413e6924d2234f2e0c7acc3f51
|
|
7
|
+
data.tar.gz: b2addfe16f43a486882c81f85a6fa2af89c4103d06959e32ed621e733e7ee7f89cec1d108084a8cdf9818330fdd80a2224e0ed0d95973eee4a3d511be110a100
|
data/lib/mesa_test.rb
CHANGED
|
@@ -1335,7 +1335,7 @@ class MesaTestCase
|
|
|
1335
1335
|
run_start = Time.now
|
|
1336
1336
|
|
|
1337
1337
|
# do the run
|
|
1338
|
-
rn_command = if File.exist?(File.join(ENV['MESASDK_ROOT'], 'bin', 'time'))
|
|
1338
|
+
rn_command = if ENV['MESASDK_ROOT'] && File.exist?(File.join(ENV['MESASDK_ROOT'], 'bin', 'time'))
|
|
1339
1339
|
%q(command time -f '%M' -o mem-rn.txt ./rn > out.txt 2> ) +
|
|
1340
1340
|
'err.txt'
|
|
1341
1341
|
else
|
|
@@ -1415,7 +1415,7 @@ class MesaTestCase
|
|
|
1415
1415
|
|
|
1416
1416
|
# do restart and consolidate output. Command depends on if we have access
|
|
1417
1417
|
# to SDK version of gnu time.
|
|
1418
|
-
re_command = if File.exist?(File.join(ENV['MESASDK_ROOT'], 'bin', 'time'))
|
|
1418
|
+
re_command = if ENV['MESASDK_ROOT'] && File.exist?(File.join(ENV['MESASDK_ROOT'], 'bin', 'time'))
|
|
1419
1419
|
%q(command time -f '%M' -o mem-re.txt ./re ) + "#{photo}" \
|
|
1420
1420
|
' >> out.txt 2> err.txt'
|
|
1421
1421
|
else
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mesa_test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- William Wolf
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
83
|
requirements: []
|
|
84
|
-
rubygems_version: 3.0.
|
|
84
|
+
rubygems_version: 3.0.1
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: Command line tool for running and reporting the MESA test suites.
|