[Groonga-commit] groonga/groonga at 535838b [master] test: use read-timeout directive

Back to archive index

Kouhei Sutou null+****@clear*****
Wed May 25 16:34:57 JST 2016


Kouhei Sutou	2016-05-25 16:34:57 +0900 (Wed, 25 May 2016)

  New Revision: 535838b19da2a1525e89c541f9879f86a915b188
  https://github.com/groonga/groonga/commit/535838b19da2a1525e89c541f9879f86a915b188

  Message:
    test: use read-timeout directive

  Modified files:
    test/command/suite/dump/config/dump_configs_no.test
    test/command/suite/dump/schema/plugin/dump_plugins_no.test
    test/command/suite/table_create/default_tokenizer/nonexistent.test
    test/command/suite/table_create/normalizer/nonexistent.test
    test/command/suite/table_remove/array/referenced/column_own.test
    test/command/suite/table_remove/array/with_columns.test
    test/command/suite/table_remove/array/without_columns.test
    test/command/suite/table_remove/double_array_trie/referenced/column_own.test
    test/command/suite/table_remove/double_array_trie/with_columns.test
    test/command/suite/table_remove/double_array_trie/without_columns.test
    test/command/suite/table_remove/hash/referenced/column_own.test
    test/command/suite/table_remove/hash/with_columns.test
    test/command/suite/table_remove/hash/without_columns.test
    test/command/suite/table_remove/patricia_trie/referenced/column_own.test
    test/command/suite/table_remove/patricia_trie/with_columns.test
    test/command/suite/table_remove/patricia_trie/without_columns.test

  Modified: test/command/suite/dump/config/dump_configs_no.test (+1 -1)
===================================================================
--- test/command/suite/dump/config/dump_configs_no.test    2016-05-25 15:47:19 +0900 (2f6e223)
+++ test/command/suite/dump/config/dump_configs_no.test    2016-05-25 16:34:57 +0900 (02db523)
@@ -1,4 +1,4 @@
 config_set key value
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump --dump_configs no

  Modified: test/command/suite/dump/schema/plugin/dump_plugins_no.test (+1 -1)
===================================================================
--- test/command/suite/dump/schema/plugin/dump_plugins_no.test    2016-05-25 15:47:19 +0900 (d2cc8b3)
+++ test/command/suite/dump/schema/plugin/dump_plugins_no.test    2016-05-25 16:34:57 +0900 (12763ba)
@@ -1,4 +1,4 @@
 plugin_register token_filters/stop_word
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump --dump_plugins no

  Modified: test/command/suite/table_create/default_tokenizer/nonexistent.test (+1 -1)
===================================================================
--- test/command/suite/table_create/default_tokenizer/nonexistent.test    2016-05-25 15:47:19 +0900 (e7eb9ca)
+++ test/command/suite/table_create/default_tokenizer/nonexistent.test    2016-05-25 16:34:57 +0900 (efa8039)
@@ -1,5 +1,5 @@
 table_create Tags TABLE_PAT_KEY ShortText \
   --default_tokenizer TokenNonexistent
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_create/normalizer/nonexistent.test (+1 -1)
===================================================================
--- test/command/suite/table_create/normalizer/nonexistent.test    2016-05-25 15:47:19 +0900 (ec36973)
+++ test/command/suite/table_create/normalizer/nonexistent.test    2016-05-25 16:34:57 +0900 (f9874cf)
@@ -1,5 +1,5 @@
 table_create Terms TABLE_PAT_KEY ShortText \
   --normalizer NormalizerNonexistent
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/array/referenced/column_own.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/array/referenced/column_own.test    2016-05-25 15:47:19 +0900 (21e11ca)
+++ test/command/suite/table_remove/array/referenced/column_own.test    2016-05-25 16:34:57 +0900 (94ec6b6)
@@ -3,5 +3,5 @@ column_create Names nick_name COLUMN_SCALAR Names
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/array/with_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/array/with_columns.test    2016-05-25 15:47:19 +0900 (aaf42c3)
+++ test/command/suite/table_remove/array/with_columns.test    2016-05-25 16:34:57 +0900 (6d5aa41)
@@ -5,5 +5,5 @@ dump
 
 table_remove Users
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/array/without_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/array/without_columns.test    2016-05-25 15:47:19 +0900 (d0003d4)
+++ test/command/suite/table_remove/array/without_columns.test    2016-05-25 16:34:57 +0900 (bb485c3)
@@ -4,5 +4,5 @@ dump
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/double_array_trie/referenced/column_own.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/double_array_trie/referenced/column_own.test    2016-05-25 15:47:19 +0900 (bce571d)
+++ test/command/suite/table_remove/double_array_trie/referenced/column_own.test    2016-05-25 16:34:57 +0900 (11853c6)
@@ -3,5 +3,5 @@ column_create Names nick_name COLUMN_SCALAR Names
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/double_array_trie/with_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/double_array_trie/with_columns.test    2016-05-25 15:47:19 +0900 (1bd295a)
+++ test/command/suite/table_remove/double_array_trie/with_columns.test    2016-05-25 16:34:57 +0900 (d833733)
@@ -5,5 +5,5 @@ dump
 
 table_remove Users
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/double_array_trie/without_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/double_array_trie/without_columns.test    2016-05-25 15:47:19 +0900 (737ffb7)
+++ test/command/suite/table_remove/double_array_trie/without_columns.test    2016-05-25 16:34:57 +0900 (c139d76)
@@ -4,5 +4,5 @@ dump
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/hash/referenced/column_own.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/hash/referenced/column_own.test    2016-05-25 15:47:19 +0900 (9f56db5)
+++ test/command/suite/table_remove/hash/referenced/column_own.test    2016-05-25 16:34:57 +0900 (2418b01)
@@ -3,5 +3,5 @@ column_create Names nick_name COLUMN_SCALAR Names
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/hash/with_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/hash/with_columns.test    2016-05-25 15:47:19 +0900 (bbebb2a)
+++ test/command/suite/table_remove/hash/with_columns.test    2016-05-25 16:34:57 +0900 (e04a279)
@@ -5,5 +5,5 @@ dump
 
 table_remove Users
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/hash/without_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/hash/without_columns.test    2016-05-25 15:47:19 +0900 (eaf5795)
+++ test/command/suite/table_remove/hash/without_columns.test    2016-05-25 16:34:57 +0900 (e2fa178)
@@ -4,5 +4,5 @@ dump
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/patricia_trie/referenced/column_own.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/patricia_trie/referenced/column_own.test    2016-05-25 15:47:19 +0900 (c06dfac)
+++ test/command/suite/table_remove/patricia_trie/referenced/column_own.test    2016-05-25 16:34:57 +0900 (97dbc62)
@@ -3,5 +3,5 @@ column_create Names nick_name COLUMN_SCALAR Names
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/patricia_trie/with_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/patricia_trie/with_columns.test    2016-05-25 15:47:19 +0900 (69f013a)
+++ test/command/suite/table_remove/patricia_trie/with_columns.test    2016-05-25 16:34:57 +0900 (92cc8eb)
@@ -5,5 +5,5 @@ dump
 
 table_remove Users
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump

  Modified: test/command/suite/table_remove/patricia_trie/without_columns.test (+1 -1)
===================================================================
--- test/command/suite/table_remove/patricia_trie/without_columns.test    2016-05-25 15:47:19 +0900 (238c037)
+++ test/command/suite/table_remove/patricia_trie/without_columns.test    2016-05-25 16:34:57 +0900 (271466b)
@@ -4,5 +4,5 @@ dump
 
 table_remove Names
 
-#@timeout 0.1
+#@read-timeout 0.1
 dump
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index