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 9C8FE469719 for ; Mon, 28 Sep 2020 19:48:31 +0300 (MSK) Date: Mon, 28 Sep 2020 19:37:57 +0300 From: Igor Munkin Message-ID: <20200928163757.GT18920@tarantool.org> References: <6b7def49c9d2252425d3944cc4274c9a155ae9e9.1600862684.git.imun@tarantool.org> <9D468A12-77EE-4876-BD91-BC9D840E0D08@tarantool.org> <20200928130725.GR18920@tarantool.org> <20200928153627.GS18920@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200928153627.GS18920@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 Well, the issue still occurs for static-build[1]. Too many 'src/tarantool' in the path and more specific pattern is needed. Here are the changes: ================================================================================ diff --git a/test/app-tap/gh-1700-abort-recording-on-fiber-switch.test.lua b/test/app-tap/gh-1700-abort-recording-on-fiber-swit ch.test.lua index f4ceb9455..7b9156c22 100755 --- a/test/app-tap/gh-1700-abort-recording-on-fiber-switch.test.lua +++ b/test/app-tap/gh-1700-abort-recording-on-fiber-switch.test.lua @@ -29,7 +29,7 @@ if #arg == 0 then LUABIN = arg[-1], SCRIPT = arg[0], -- To support out-of-source build use relative paths in repo - PATH = arg[-1]:gsub('src/tarantool', 'test/app-tap'), + PATH = arg[-1]:gsub('src/tarantool$', 'test/app-tap'), SUFFIX = package.cpath:match('?.(%a+);'), } ================================================================================ [1]: https://gitlab.com/tarantool/tarantool/-/jobs/761207911 -- Best regards, IM