mesa_test 0.0.9 → 0.0.10
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/bin/mesa_test +3 -3
- data/lib/mesa_test.rb +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ef6f6b82a212ebcdf3a381b427ddafe75f3a40d
|
|
4
|
+
data.tar.gz: 1475803c7aed9c62bca5e839bff7dfe82b9abde5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90fd95bd465609905518901bbdcf9e421778ca6426afabb72b33035d18e60bdd719538553bed3d00549771986360cdb399e1d96208dfe131391b9648e61adc9e
|
|
7
|
+
data.tar.gz: 6afe4a11399b5a19de0bcde3f439f475bd25f30b9e2e9052d2e61274eda28f4d9c3f15b8f3e6e2663d54c678ae508c523175c74279ac87f252e4a3fe2196df48
|
data/bin/mesa_test
CHANGED
|
@@ -251,8 +251,8 @@ class MesaTest < Thor
|
|
|
251
251
|
MESA_DIR. Basically just an svn checkout followed by going into the directory
|
|
252
252
|
and running ./clean and ./install. SDK or compilers must be set up prior.
|
|
253
253
|
Once installation is complete, run the test suite, and report results to
|
|
254
|
-
MesaTestHub. Does not affect the user's MESA_DIR or other
|
|
255
|
-
variables. This is
|
|
254
|
+
MesaTestHub. Does not affect the user's MESA_DIR or other environment
|
|
255
|
+
variables. This is basically a shortcut for running
|
|
256
256
|
|
|
257
257
|
`mesa_test install SOME_VERSION SOME_DIR`
|
|
258
258
|
|
|
@@ -268,7 +268,7 @@ class MesaTest < Thor
|
|
|
268
268
|
read from ~/.mesa_test.yml.
|
|
269
269
|
LONGDESC
|
|
270
270
|
option :destroy, type: :boolean
|
|
271
|
-
option :force, type: :boolean,
|
|
271
|
+
option :force, type: :boolean, aliases: '-f'
|
|
272
272
|
def install_and_test_all(version, mesa_dir)
|
|
273
273
|
s = MesaTestSubmitter.new_from_config
|
|
274
274
|
unless options[:force]
|
data/lib/mesa_test.rb
CHANGED
|
@@ -104,9 +104,9 @@ e-mail and password will be stored in plain text.'
|
|
|
104
104
|
return new_submitter
|
|
105
105
|
end
|
|
106
106
|
|
|
107
|
-
attr_accessor :computer_name, :user_name, :email, :password, :platform,
|
|
108
|
-
|
|
109
|
-
|
|
107
|
+
attr_accessor :computer_name, :user_name, :email, :password, :platform,
|
|
108
|
+
:platform_version, :processor, :ram_gb, :compiler,
|
|
109
|
+
:compiler_version, :config_file, :base_uri
|
|
110
110
|
|
|
111
111
|
attr_reader :shell
|
|
112
112
|
|
|
@@ -225,7 +225,7 @@ e-mail and password will be stored in plain text.'
|
|
|
225
225
|
password: password,
|
|
226
226
|
runtime_seconds: test_case.runtime_seconds,
|
|
227
227
|
mesa_version: test_case.mesa_version,
|
|
228
|
-
passed: test_case.passed
|
|
228
|
+
passed: test_case.passed? ? 1 : 0,
|
|
229
229
|
compiler: compiler,
|
|
230
230
|
compiler_version: compiler_version,
|
|
231
231
|
platform_version: platform_version,
|
|
@@ -679,7 +679,7 @@ class MesaTestCase
|
|
|
679
679
|
run_checksum: "#{test_name} run: checksum for #{final_model} matches " \
|
|
680
680
|
'after ./rn',
|
|
681
681
|
photo_checksum: "#{test_name} restart: checksum for #{final_model} " \
|
|
682
|
-
|
|
682
|
+
"matches after ./re #{photo}"
|
|
683
683
|
}
|
|
684
684
|
|
|
685
685
|
# validate stuff
|
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.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- William Wolf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-11-
|
|
11
|
+
date: 2017-11-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|