From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp54.i.mail.ru (smtp54.i.mail.ru [217.69.128.34]) (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 6E554446439 for ; Wed, 14 Oct 2020 20:04:37 +0300 (MSK) From: Sergey Kaplun Date: Wed, 14 Oct 2020 20:03:59 +0300 Message-Id: <098b637d1a67b7a0e8215d8d4cd9327b6a0e266c.1602694006.git.skaplun@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 2/2] test: disable jit related tests at FreeBSD List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Munkin , Sergey Ostanevich Cc: tarantool-patches@dev.tarantool.org This patch fixes the regression introduced in scope of 5a61e1ab54b5c66bfebd836db1ac47996611e065 ('misc: add C and Lua API for platform metrics'). As far as newly added tests include trace checks and https://github.com/tarantool/tarantool/issues/4819 (JIT fails to allocate mcode memory on FreeBSD) has not resolved yet, this tests should be disabled to for running on FreeBSD. Follows up tarantool/tarantool#5187 --- test/misclib-getmetrics-capi.skipcond | 7 +++++++ test/misclib-getmetrics-lapi.skipcond | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 test/misclib-getmetrics-capi.skipcond create mode 100644 test/misclib-getmetrics-lapi.skipcond diff --git a/test/misclib-getmetrics-capi.skipcond b/test/misclib-getmetrics-capi.skipcond new file mode 100644 index 0000000..2a2ec4d --- /dev/null +++ b/test/misclib-getmetrics-capi.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on FreeBSD due to #4819. +if platform.system() == 'FreeBSD': + self.skip = 1 + +# vim: set ft=python: diff --git a/test/misclib-getmetrics-lapi.skipcond b/test/misclib-getmetrics-lapi.skipcond new file mode 100644 index 0000000..2a2ec4d --- /dev/null +++ b/test/misclib-getmetrics-lapi.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on FreeBSD due to #4819. +if platform.system() == 'FreeBSD': + self.skip = 1 + +# vim: set ft=python: -- 2.28.0