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 19E05469719 for ; Mon, 28 Sep 2020 18:47:01 +0300 (MSK) Date: Mon, 28 Sep 2020 18:36:27 +0300 From: Igor Munkin Message-ID: <20200928153627.GS18920@tarantool.org> References: <6b7def49c9d2252425d3944cc4274c9a155ae9e9.1600862684.git.imun@tarantool.org> <9D468A12-77EE-4876-BD91-BC9D840E0D08@tarantool.org> <20200928130725.GR18920@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200928130725.GR18920@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 There was an issue with out of source build in the newly added test[1]. Here is the fix: ================================================================================ 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 027dee219..f4ceb9455 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 @@ -28,7 +28,8 @@ if #arg == 0 then local vars = { LUABIN = arg[-1], SCRIPT = arg[0], - PATH = arg[0]:gsub('/?[^/]+%.test%.lua', ''), + -- To support out-of-source build use relative paths in repo + PATH = arg[-1]:gsub('src/tarantool', 'test/app-tap'), SUFFIX = package.cpath:match('?.(%a+);'), } ================================================================================ [1]: https://gitlab.com/tarantool/tarantool/-/jobs/760937971 -- Best regards, IM