From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp46.i.mail.ru (smtp46.i.mail.ru [94.100.177.106]) (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 518304696C7 for ; Wed, 22 Apr 2020 20:44:52 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Wed, 22 Apr 2020 20:44:45 +0300 Message-Id: <103723afef82d73d9e8e3c250f646f2c97c3edfb.1587577457.git.avtikhon@tarantool.org> In-Reply-To: References: In-Reply-To: References: Subject: [Tarantool-patches] [PATCH v2 3/3] 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 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 #4258 --- .travis.mk | 2 +- test/app-tap/http_client.skipcond | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.mk b/.travis.mk index 5cde9d22e..978be14ab 100644 --- a/.travis.mk +++ b/.travis.mk @@ -88,7 +88,7 @@ build_outofsrc: make -j test_outofsrc_no_deps: build_outofsrc - cd ${OUT_OF_SRC_BLD_PATH} && make test-force + cd ${OUT_OF_SRC_BLD_PATH} && OUTOFSRC_BUILD=ON make test-force test_outofsrc: deps_debian test_outofsrc_no_deps diff --git a/test/app-tap/http_client.skipcond b/test/app-tap/http_client.skipcond index 48e17903e..2cc2572c5 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