mesa_test 0.2.5 → 0.2.6
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 +5 -5
- data/lib/mesa_test.rb +8 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 0135ca0fef27f870ca24d288408b82bb22f39b0f5e577da34f700b73b4449d51
|
|
4
|
+
data.tar.gz: 4b124a6d3f831633d24e0919641d24e23dd9df346598ddab2e77e7ff2f34b198
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 613be3bc7e3c540556eecbbe4d54230371186d14277b39ce4bd7b6ef54adef68c7e386631ab0c4ea1dabe612e7a3de55c3949839edd6df4a9f7f825cf324b45e
|
|
7
|
+
data.tar.gz: 259d2e14716e4ecb4aa49a6fdcef2c5bbd3743839aea76f91b41a02ce67981d77175efc5edd0a4cb49a3e079eb3f88fd42aa035210d9e5884b8156631bb3a683
|
data/lib/mesa_test.rb
CHANGED
|
@@ -1271,7 +1271,14 @@ class MesaTestCase
|
|
|
1271
1271
|
# this should ONLY be read after we are certain we've passed AND that we
|
|
1272
1272
|
# even have a newly-made checksum
|
|
1273
1273
|
if File.exist?('checks.md5') && @mesa.update_checksums
|
|
1274
|
-
|
|
1274
|
+
# sometimes we want to ignore the final checksum value
|
|
1275
|
+
# we still want to check that restarts on individual machines are bit-for-bit
|
|
1276
|
+
# but we don't require bit-for-bit globally, so we report a bogus checksum
|
|
1277
|
+
if File.exist?('.ignore_checksum') then
|
|
1278
|
+
@checksum ='00000000000000000000000000000000'
|
|
1279
|
+
else
|
|
1280
|
+
@checksum = File.read('checks.md5').split.first
|
|
1281
|
+
end
|
|
1275
1282
|
end
|
|
1276
1283
|
write_success_msg(success_type)
|
|
1277
1284
|
true
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- William Wolf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
82
82
|
version: '0'
|
|
83
83
|
requirements: []
|
|
84
84
|
rubyforge_project:
|
|
85
|
-
rubygems_version: 2.6
|
|
85
|
+
rubygems_version: 2.7.6
|
|
86
86
|
signing_key:
|
|
87
87
|
specification_version: 4
|
|
88
88
|
summary: Command line tool for running and reporting the MESA test suites.
|