test_bench-executable 3.0.0.0 → 3.0.0.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/lib/test_bench/executable/parse_arguments.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1745536d95e28bb2fb167a1bf45dbef9f3552ce215b8822fd572bd3f9e73f47a
|
4
|
+
data.tar.gz: 495cf6918c41db05cbb2436371790fa2a5a4aea8f77800346cb7cd307c5719fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f5da2cfa3080e948fe68a5eb0bb3e3b732a3479b5f781ba83c476a684f7e7d9f5d33c9a5382f452d12858ff191d912195b4eb2ed19a93c326d9b44aae8d577b
|
7
|
+
data.tar.gz: 7c5de16a06821b6493f49a71961058196a9fd89e748f066335a277d2384e50ea1eaf1f6762d95540f07c709509a3df9fa84e73f9ffc7a54a3dff1c8bfbb77b62
|
@@ -89,9 +89,9 @@ module TestBench
|
|
89
89
|
].compact.join(':')
|
90
90
|
|
91
91
|
when '-d', '--detail'
|
92
|
-
env['
|
92
|
+
env['TEST_BENCH_DETAIL'] = 'on'
|
93
93
|
when '-D', '--no-detail'
|
94
|
-
env['
|
94
|
+
env['TEST_BENCH_DETAIL'] = 'off'
|
95
95
|
|
96
96
|
when '--device'
|
97
97
|
device = require_next_argument(switch)
|
@@ -202,7 +202,7 @@ The following environment variables can also control execution:
|
|
202
202
|
TEST_BENCH_STRICT See --strict
|
203
203
|
TEST_BENCH_RANDOM_SEED See --random-seed
|
204
204
|
TEST_BENCH_FILTER_BACKTRACE_PATTERN See --filter-backtrace
|
205
|
-
|
205
|
+
TEST_BENCH_DETAIL See --detail
|
206
206
|
TEST_BENCH_OUTPUT_DEVICE See --device
|
207
207
|
TEST_BENCH_OUTPUT_LEVEL See --output-level
|
208
208
|
TEST_BENCH_OUTPUT_STYLING See --output-styling
|