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 DF4B2469719 for ; Fri, 16 Oct 2020 15:22:35 +0300 (MSK) From: Igor Munkin Date: Fri, 16 Oct 2020 15:11:58 +0300 Message-Id: <2222c35ba41c18961d5e47def32c32afd2ec1fe1.1602845035.git.imun@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH luajit] test: introduce the root CMakeLists.txt List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Alexander V. Tikhonov" , Timur Safin , Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Considering the way the tests are built and run now, it's too fragile and inconvenient to maintain the newly added tests outside this repo. This change introduces the root CMakeLists.txt for test directory enclosing all auxilliary activity if one is required. Part of tarantool/tarantool#5425 Signed-off-by: Igor Munkin --- The patch is properly backported to the old branches too (the branch is in the cover letter). test/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/CMakeLists.txt diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..ec37580 --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,3 @@ +add_subdirectory(gh-4427-ffi-sandwich) +add_subdirectory(lj-flush-on-trace) +add_subdirectory(misclib-getmetrics-capi) -- 2.25.0