From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (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 40EA045C305 for ; Wed, 16 Dec 2020 19:01:23 +0300 (MSK) From: sergeyb@tarantool.org Date: Wed, 16 Dec 2020 19:00:02 +0300 Message-Id: <234ebec733eb0931bb0394cee74eca42bfb6af3a.1608127545.git.sergeyb@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v7 2/3] luacheck: fix warnings in test/app List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, lvasiliev@tarantool.org, v.shpilevoy@tarantool.org From: Sergey Bronnikov Part of #5454 Reviewed-by: Vladislav Shpilevoy Reviewed-by: Igor Munkin Co-authored-by: Vladislav Shpilevoy Co-authored-by: Igor Munkin --- .luacheckrc | 5 ++++- test/app-tap/cfg.test.lua | 2 +- test/app-tap/console.test.lua | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index ae96576ec..d9093a5eb 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -32,7 +32,7 @@ exclude_files = { "build/**/*.lua", -- Third-party source code. "test-run/**/*.lua", - "test/app/*.lua", + "test/app/*.test.lua", "test/box/**/*.lua", "test/box-py/**/*.lua", "test/box-tap/**/*.lua", @@ -109,3 +109,6 @@ files["test/app-tap/lua/require_mod.lua"] = { files["test/app-tap/string.test.lua"] = { globals = {"utf8"} } +files["test/app/lua/fiber.lua"] = { + globals = {"box_fiber_run_test"} +} -- 2.25.1