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 1BEB62C2A6 for ; Mon, 6 May 2019 07:34:46 -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 3CDF2GfCR-Qk for ; Mon, 6 May 2019 07:34:46 -0400 (EDT) Received: from smtp48.i.mail.ru (smtp48.i.mail.ru [94.100.177.108]) (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 CF9652B91C for ; Mon, 6 May 2019 07:34:45 -0400 (EDT) Date: Mon, 6 May 2019 14:34:31 +0300 From: Alexander Turenko Subject: [tarantool-patches] Re: [PATCH v2] test: enable parallel testing for vinyl suite Message-ID: <20190506113431.ghaw4nqymhgzdeiu@tkn_work_nb> References: <5abe784e331ce7ed4f7d718eb04c82ab83aa4f46.1557136243.git.avtikhon@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <5abe784e331ce7ed4f7d718eb04c82ab83aa4f46.1557136243.git.avtikhon@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: avtikhon Cc: tarantool-patches@freelists.org Pushed to master and 2.1. WBR, Alexander Turenko. On Mon, May 06, 2019 at 12:56:51PM +0300, avtikhon wrote: > Need to switch on is_parallel flag for vinyl suite > to be able to run subtests in parallel using: > ./test_run.pl -j'' Typo: pl -> py (I have fixed it). > Test vinyl/throttle.test.lua temporary disabled due > to it tests the performance which fails in parallel > runs because of highloaded hardware. > > Fix #4158 > --- > > Github: https://github.com/tarantool/tarantool/compare/avtikhon/gh4158-vinyl-parallel > Issue: https://github.com/tarantool/tarantool/issues/4158 > > test/vinyl/suite.ini | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/test/vinyl/suite.ini b/test/vinyl/suite.ini > index 3612cf44b..f6783105f 100644 > --- a/test/vinyl/suite.ini > +++ b/test/vinyl/suite.ini > @@ -7,6 +7,7 @@ config = suite.cfg > lua_libs = suite.lua stress.lua large.lua txn_proxy.lua ../box/lua/utils.lua > use_unix_sockets = True > long_run = stress.test.lua large.test.lua write_iterator_rand.test.lua dump_stress.test.lua select_consistency.test.lua throttle.test.lua > -is_parallel = False > -disabled = upgrade.test.lua > +is_parallel = True > +# throttle.test.lua temporary disabled for gh-4168 > +disabled = upgrade.test.lua throttle.test.lua > pretest_clean = True > -- > 2.17.1 >