From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp3.mail.ru (smtp3.mail.ru [94.100.179.58]) (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 69DF1469710 for ; Mon, 8 Jun 2020 19:04:26 +0300 (MSK) Date: Mon, 8 Jun 2020 19:03:18 +0300 From: Sergey Bronnikov Message-ID: <4aaea4c0d0bab5b4272d14286ecab6a2a7561040.1591632019.git.sergeyb@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Subject: [Tarantool-patches] [PATCH v2 4/3][msgpuck] test: make test output TAP-compliant List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, v.shpilevoy@tarantool.org Part of: https://github.com/tarantool/tarantool/issues/5000 --- test/test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test.c b/test/test.c index 42b79eb..5e2430e 100644 --- a/test/test.c +++ b/test/test.c @@ -57,6 +57,9 @@ plan(int count) tests_done[level] = 0; tests_failed[level] = 0; + if (level == 0) + printf("TAP version 13\n"); + __space(stdout); printf("%d..%d\n", 1, plan_test[level]); } -- 2.23.0 -- sergeyb@