From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp16.mail.ru (smtp16.mail.ru [94.100.176.153]) (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 97C8D45C310 for ; Tue, 26 May 2020 17:42:46 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Tue, 26 May 2020 17:42:37 +0300 Message-Id: <0bdd38320ed6e9bf10c6868e5665cc8b1221976e.1590503508.git.avtikhon@tarantool.org> In-Reply-To: References: In-Reply-To: References: Subject: [Tarantool-patches] [PATCH v2 6/7] Skip failing test from out-of-source build List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Oleg Piskunov , Sergey Bronnikov Cc: tarantool-patches@dev.tarantool.org, Alexander Turenko Skipped failing test app-tap/http_client.test.lua from out-of-source build. Left #4258 issue opened till it will be fixed. Part of #4874 --- test/app-tap/http_client.skipcond | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/app-tap/http_client.skipcond b/test/app-tap/http_client.skipcond index 108e776c4..df811dcc1 100644 --- a/test/app-tap/http_client.skipcond +++ b/test/app-tap/http_client.skipcond @@ -1,5 +1,10 @@ +import os import platform +# Disabled at out-of-source build due to issue #4258. +if os.getenv("OUTOFSRC_BUILD") == 'ON': + self.skip = 1 + # Disabled on FreeBSD due to flaky fail #4271. if platform.system() == 'FreeBSD': self.skip = 1 -- 2.17.1