From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng2.m.smailru.net (smtpng2.m.smailru.net [94.100.179.3]) (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 A1F3445C304 for ; Sun, 13 Dec 2020 21:10:49 +0300 (MSK) References: <51c5f48d04df7d43e4b773e8d9c2cdad76137dc1.1607879643.git.v.shpilevoy@tarantool.org> From: Vladislav Shpilevoy Message-ID: <73f59786-56e7-a23d-b716-21163449a5bf@tarantool.org> Date: Sun, 13 Dec 2020 19:10:48 +0100 MIME-Version: 1.0 In-Reply-To: <51c5f48d04df7d43e4b773e8d9c2cdad76137dc1.1607879643.git.v.shpilevoy@tarantool.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Tarantool-patches] [PATCH 4/8] test: introduce raft unit tests List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, sergepetrenko@tarantool.org Apparently, as Sergey B. pointed out, build fails on Linux due to open() not defined. Here is a fix, force pushed: ==================== diff --git a/test/unit/raft_test_utils.c b/test/unit/raft_test_utils.c index 4acd74e8f..c3be72317 100644 --- a/test/unit/raft_test_utils.c +++ b/test/unit/raft_test_utils.c @@ -33,6 +33,8 @@ #include "raft_test_utils.h" #include "random.h" +#include +