From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Wed, 14 Aug 2019 15:12:18 +0300 From: Vladimir Davydov Subject: Re: [PATCH v1] test: app/socket flaky fails at 1118 line Message-ID: <20190814121218.GG13834@esperanza> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: To: "Alexander V. Tikhonov" Cc: tarantool-patches@freelists.org List-ID: On Wed, Aug 14, 2019 at 08:27:59AM +0300, Alexander V. Tikhonov wrote: > diff --git a/test/app/socket.test.lua b/test/app/socket.test.lua > index 7ae9a98aa..68ac4b4ac 100644 > --- a/test/app/socket.test.lua > +++ b/test/app/socket.test.lua > @@ -359,7 +359,12 @@ test_run:cmd("setopt delimiter ''"); > > s = socket.tcp_connect('127.0.0.1', port) > ch = fiber.channel() > -f = fiber.create(function() s:read(12) ch:put(true) end) > +test_run:cmd("setopt delimiter ';'") > +f = fiber.create(function() > + s:read(12) > + ch:put(true) > +end); > +test_run:cmd("setopt delimiter ''"); > s:close() > ch:get(1) > s:error() For the record. Discussed f2f, agreed that this patch doesn't make any difference. There must be some other explanation of the test failure.