grntest 1.2.4 → 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 915bd62815178dc7740a1bf25e0f29483421399e
4
- data.tar.gz: '02896dee4bbe5117a6fa3acc39c5de14c6243538'
3
+ metadata.gz: 0abb970522c59544eb9373c89c179835bdb0818d
4
+ data.tar.gz: ad7f18e703fe092758eab01541f271b7ca1aa485
5
5
  SHA512:
6
- metadata.gz: e93ddd16e4f5397f2a9dd634967234b57459fc848352fb5f2e12730c789676c5ae49909dee17defd181c55998509fa153eb05c1f8ea964129eeeb5f645fff8e0
7
- data.tar.gz: b79b86bff0a082bc8f949f1041db225cb4b8733d8578675d565e7733bccb9f5a722fbc3f241a7226782149d5f8cfddef6a3ea0e22544685de56ca696b13edd49
6
+ metadata.gz: 245b5e6849384cff5959aec6b6cc75bb188b4cb58b7f354531df756b86fbf060e97d149d0b5849d026d93be50a65b9225480f0fe8a5b70786c9d701586f35025
7
+ data.tar.gz: 78483e2708e13fe1bc4ce3e6b423a42976626d0dc1d7f6753b5352965b6a368d3326f424bce54deac2749f284cd951ab85e51b3e26768a591dd795e20280ea00
data/doc/text/news.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # News
2
2
 
3
+ ## 1.2.5: 2017-08-15
4
+
5
+ ### Improvements
6
+
7
+ * Suppressed "thread end" log message.
8
+
9
+ * Added error line normalization support for command version 3.
10
+
3
11
  ## 1.2.4: 2017-03-27
4
12
 
5
13
  ### Improvements
@@ -480,6 +480,8 @@ module Grntest
480
480
  case message
481
481
  when /\Athread start/
482
482
  true
483
+ when /\Athread end/
484
+ true
483
485
  else
484
486
  false
485
487
  end
@@ -645,6 +645,7 @@ http {
645
645
  if file
646
646
  normalized_values["file"] = normalize_error_file_path(file)
647
647
  end
648
+ normalized_values["line"] = 0 if error["line"]
648
649
  header.merge({
649
650
  "start_time" => 0.0,
650
651
  "elapsed_time" => 0.0,
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2012-2016 Kouhei Sutou <kou@clear-code.com>
1
+ # Copyright (C) 2012-2017 Kouhei Sutou <kou@clear-code.com>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -14,5 +14,5 @@
14
14
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
15
 
16
16
  module Grntest
17
- VERSION = "1.2.4"
17
+ VERSION = "1.2.5"
18
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grntest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-03-27 00:00:00.000000000 Z
12
+ date: 2017-08-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json
@@ -225,7 +225,7 @@ specification_version: 4
225
225
  summary: Grntest is a testing framework for Groonga. You can write a test for Groonga
226
226
  by writing Groonga commands and expected result.
227
227
  test_files:
228
- - test/test-log-parser.rb
228
+ - test/run-test.rb
229
229
  - test/executors/test-base-executor.rb
230
230
  - test/executors/test-standard-io-executor.rb
231
- - test/run-test.rb
231
+ - test/test-log-parser.rb