From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 4A257291AF for ; Mon, 17 Sep 2018 09:12:00 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7V2ziJmaKtgV for ; Mon, 17 Sep 2018 09:12:00 -0400 (EDT) Received: from smtp36.i.mail.ru (smtp36.i.mail.ru [94.100.177.96]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id F1ED12919E for ; Mon, 17 Sep 2018 09:11:58 -0400 (EDT) From: Sergei Voronezhskii Subject: [tarantool-patches] [PATCH] test: enable parallel mode for wall_off tests Date: Mon, 17 Sep 2018 16:11:55 +0300 Message-Id: <20180917131155.8857-1-sergw@tarantool.org> Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org Cc: Alexander Turenko Use the proper way to cleanup tests. Part of #2436 --- test/wal_off/oom.result | 4 ++-- test/wal_off/oom.test.lua | 4 ++-- test/wal_off/suite.ini | 2 +- test/wal_off/tuple.result | 2 +- test/wal_off/tuple.test.lua | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/wal_off/oom.result b/test/wal_off/oom.result index c47d16c46..65bb8c670 100644 --- a/test/wal_off/oom.result +++ b/test/wal_off/oom.result @@ -4,7 +4,7 @@ env = require('test_run') test_run = env.new() --- ... -test_run:cmd('restart server default') +test_run:cmd('restart server default with cleanup=1') test_run:cmd("push filter 'error: Failed to allocate [0-9]+ ' to 'error: Failed to allocate '") --- - true @@ -231,7 +231,7 @@ t = nil --- ... -- https://github.com/tarantool/tarantool/issues/962 index:delete() failed -test_run:cmd('restart server default') +test_run:cmd('restart server default with cleanup=1') arena_bytes = box.cfg.memtx_memory --- ... diff --git a/test/wal_off/oom.test.lua b/test/wal_off/oom.test.lua index 5c0ab8e73..89dba3f06 100644 --- a/test/wal_off/oom.test.lua +++ b/test/wal_off/oom.test.lua @@ -1,6 +1,6 @@ env = require('test_run') test_run = env.new() -test_run:cmd('restart server default') +test_run:cmd('restart server default with cleanup=1') test_run:cmd("push filter 'error: Failed to allocate [0-9]+ ' to 'error: Failed to allocate '") space = box.schema.space.create('tweedledum') @@ -80,7 +80,7 @@ space:drop() t = nil -- https://github.com/tarantool/tarantool/issues/962 index:delete() failed -test_run:cmd('restart server default') +test_run:cmd('restart server default with cleanup=1') arena_bytes = box.cfg.memtx_memory str = string.rep('a', 15000) -- about size of index memory block diff --git a/test/wal_off/suite.ini b/test/wal_off/suite.ini index ad19eab10..cbb7cb341 100644 --- a/test/wal_off/suite.ini +++ b/test/wal_off/suite.ini @@ -2,4 +2,4 @@ core = tarantool script = wal.lua description = tarantool/box, wal_mode = none -is_parallel = False +is_parallel = True diff --git a/test/wal_off/tuple.result b/test/wal_off/tuple.result index fa431e203..dcbd24daf 100644 --- a/test/wal_off/tuple.result +++ b/test/wal_off/tuple.result @@ -4,7 +4,7 @@ env = require('test_run') test_run = env.new() --- ... -test_run:cmd("restart server default") +test_run:cmd("restart server default with cleanup=1") -- -- Test various tuple bugs which do not require a write ahead log. -- diff --git a/test/wal_off/tuple.test.lua b/test/wal_off/tuple.test.lua index 19415a92d..859438f71 100644 --- a/test/wal_off/tuple.test.lua +++ b/test/wal_off/tuple.test.lua @@ -1,6 +1,6 @@ env = require('test_run') test_run = env.new() -test_run:cmd("restart server default") +test_run:cmd("restart server default with cleanup=1") -- -- Test various tuple bugs which do not require a write ahead log. -- -- 2.18.0