From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (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 62A4A469719 for ; Mon, 28 Sep 2020 20:55:55 +0300 (MSK) Date: Mon, 28 Sep 2020 20:45:20 +0300 From: Igor Munkin Message-ID: <20200928174520.GU18920@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> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200928163757.GT18920@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: "sergos@tarantool.org" Cc: tarantool-patches@dev.tarantool.org, Vladislav Shpilevoy 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