From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp50.i.mail.ru (smtp50.i.mail.ru [94.100.177.110]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 79F07469719 for ; Tue, 29 Sep 2020 12:24:13 +0300 (MSK) Date: Tue, 29 Sep 2020 12:24:12 +0300 From: Sergey Ostanevich Message-ID: <20200929092412.GC35@tarantool.org> References: <6b7def49c9d2252425d3944cc4274c9a155ae9e9.1600862684.git.imun@tarantool.org> <9D468A12-77EE-4876-BD91-BC9D840E0D08@tarantool.org> <20200928130725.GR18920@tarantool.org> <20200928153627.GS18920@tarantool.org> <20200928163757.GT18920@tarantool.org> <20200928174520.GU18920@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20200928174520.GU18920@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v2 2/2] lua: abort trace recording on fiber yield List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Munkin Cc: tarantool-patches@dev.tarantool.org, Vladislav Shpilevoy Hi! Thanks for the patch! I wonder how many tests are failing due to #4819 and are they covered with skip conditions? Also, how will we fix all those tests after FreeBSD fixup? The patchset is LGTM to me. Regards, Sergos On 28 сен 20:45, Igor Munkin wrote: > Meh, the last one (I hope): I forgot there are the issues with JIT on > FreeBSD[1]. So I added skipcond file for the newly added test: > > ================================================================================ > > diff --git a/test/app-tap/gh-1700-abort-recording-on-fiber-switch.skipcond b/test/app-tap/gh-1700-abort-recording-on-fiber-switch.skipcond > new file mode 100644 > index 000000000..2a2ec4d97 > --- /dev/null > +++ b/test/app-tap/gh-1700-abort-recording-on-fiber-switch.skipcond > @@ -0,0 +1,7 @@ > +import platform > + > +# Disabled on FreeBSD due to #4819. > +if platform.system() == 'FreeBSD': > + self.skip = 1 > + > +# vim: set ft=python: > > ================================================================================ > > [1]: https://github.com/tarantool/tarantool/issues/4819 > > -- > Best regards, > IM