From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp40.i.mail.ru (smtp40.i.mail.ru [94.100.177.100]) (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 4560A469710 for ; Tue, 9 Jun 2020 21:26:58 +0300 (MSK) Date: Tue, 9 Jun 2020 21:25:48 +0300 From: Sergey Bronnikov Message-ID: <20200609182548.GE67772@pony.bronevichok.ru> References: <883fd098e177f14c48d2b1b6dc1482aff148e0e3.1591631501.git.sergeyb@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [PATCH v2 1/3] test: update unit test lib to produce TAP-compliant output List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladislav Shpilevoy Cc: tarantool-patches@dev.tarantool.org Hi! Thanks for review! On 01:55 Tue 09 Jun , Vladislav Shpilevoy wrote: > Hi! Thanks for the patch! > > > diff --git a/test/unit/unit.h b/test/unit/unit.h > > index 43c301b28..b0f9e7f9f 100644 > > --- a/test/unit/unit.h > > +++ b/test/unit/unit.h > > @@ -129,6 +126,16 @@ int check_plan(void); > > } \ > > } > > > > +#define header() do { \ > > + _space(stdout); \ > > + printf("# *** %s ***\n", __func__); \ > > +} while(0) > > + > > +#define footer() do { \ > > + _space(stdout); \ > > + printf("# *** %s: done ***\n", __func__); \ > > All the other alignments use tabs. Lets use tabs here too. Fixed in a branch too.