grntest 1.7.9 → 1.8.0
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/doc/text/news.md +7 -0
- data/lib/grntest/test-runner.rb +4 -4
- data/lib/grntest/version.rb +1 -1
- 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: 6c72972d30da3d1f185585ff948f44c34b8f8e648f5e8cdf7e82614e515dbfe9
|
|
4
|
+
data.tar.gz: b6940858d02b437ea8df208af39ac18edcf6af6dd83a5b16b254b4ab023c602b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7484ae8057b8ba402ba51033c35b5998bd0e38c40fe61eb84bfd8b2b1549aded1b4d76cb806daff514145fba820962327366189845d1d8386f849034aed3bfe7
|
|
7
|
+
data.tar.gz: fb618c02ae72a0b2080a74c7e901f266a3cd88a0125f6d2e82d408eade5c1ac2691a33e40fad54757cd4aa0aea7d3e9d29248f4eba3c61bb21cd9e6aa2c2893e
|
data/doc/text/news.md
CHANGED
data/lib/grntest/test-runner.rb
CHANGED
|
@@ -920,12 +920,12 @@ http {
|
|
|
920
920
|
|
|
921
921
|
def normalize_index_column_diff_progress_statistics(statistics)
|
|
922
922
|
statistics.
|
|
923
|
-
# 0.
|
|
924
|
-
gsub(/\d+\.\d+([smhd])/, "0.
|
|
923
|
+
# 0.04m -> 0.00s
|
|
924
|
+
gsub(/\d+\.\d+([smhd])/, "0.00s").
|
|
925
925
|
# 227137.81records/s-> 0.00records/s
|
|
926
926
|
gsub(/\d+\.\d+records\/s/, "0.00records/s").
|
|
927
|
-
# 96.
|
|
928
|
-
gsub(/\d+\.\d+(B|KiB|MiB|GiB)/, "0.
|
|
927
|
+
# 96.23KiB-> 0.00MiB
|
|
928
|
+
gsub(/\d+\.\d+(B|KiB|MiB|GiB)/, "0.00MiB")
|
|
929
929
|
end
|
|
930
930
|
|
|
931
931
|
def normalize_error_function(function)
|
data/lib/grntest/version.rb
CHANGED