From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp41.i.mail.ru (smtp41.i.mail.ru [94.100.177.101]) (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 6FC6B469719 for ; Thu, 22 Oct 2020 09:34:38 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Thu, 22 Oct 2020 09:34:36 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v1] test: block box/tx_man.test.lua test on OSX List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin Cc: tarantool-patches@dev.tarantool.org The issue is under investigation in issues #5423. Need to block the test on OSX to avoid of its stable fail. Needed for #5423 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/block_tx_man_test Issue: https://github.com/tarantool/tarantool/issues/5423 test/box/tx_man.skipcond | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/box/tx_man.skipcond diff --git a/test/box/tx_man.skipcond b/test/box/tx_man.skipcond new file mode 100644 index 000000000..47532c56c --- /dev/null +++ b/test/box/tx_man.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OSX due to fail #5423. +if platform.system() == 'Darwin': + self.skip = 1 + +# vim: set ft=python: -- 2.25.1