From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (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 BA6EC430409 for ; Wed, 26 Aug 2020 09:18:18 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Wed, 26 Aug 2020 09:18:16 +0300 Message-Id: <6f35dd8da45de00586fb570608fd799ea10165df.1598422646.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v1] test: restore skpicond for asan unit/guard List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin , Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Found that after commit: eec54b5741c421da51a4b58cac774b77d2dff6fc "asan/lsan: cleanup suppression lists" where was removed blocking file unit/guard.skipcond for asan testing, it was needed much more fixes from #4609, to enable this test on asan. After investigation the group of needed patches to be ported decided not to use it for 2.4 release branch and to restore the skip condition file to block the issue with the test to restore the release branch stability. Part of #4360 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4360-skip-test-guard-2.4 Issue: https://github.com/tarantool/tarantool/issues/4360 test/unit/guard.skipcond | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/unit/guard.skipcond diff --git a/test/unit/guard.skipcond b/test/unit/guard.skipcond new file mode 100644 index 000000000..e46fd1088 --- /dev/null +++ b/test/unit/guard.skipcond @@ -0,0 +1,7 @@ +import os + +# Disabled at ASAN build due to issue #4360. +if os.getenv("ASAN") == 'ON': + self.skip = 1 + +# vim: set ft=python: -- 2.17.1