From 3cd33dc18208aede939f9bf8f48202e6b444e775 Mon Sep 17 00:00:00 2001 From: Tomasz Gromadzki Date: Mon, 22 May 2023 09:52:36 +0200 Subject: [PATCH] test: disable pmem2_future/TEST[0-3]: w/ pmemcheck until #5596 is fixed Signed-off-by: Tomasz Gromadzki --- src/test/pmem2_future/TESTS.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/test/pmem2_future/TESTS.py b/src/test/pmem2_future/TESTS.py index 60b6a735878..54e5efa66a0 100755 --- a/src/test/pmem2_future/TESTS.py +++ b/src/test/pmem2_future/TESTS.py @@ -1,6 +1,6 @@ #!../env.py # SPDX-License-Identifier: BSD-3-Clause -# Copyright 2022, Intel Corporation +# Copyright 2022-2023, Intel Corporation # import sys import testframework as t @@ -72,21 +72,33 @@ def run(self, ctx): F"Got {len(matches)} instead.") +# XXX disable the test for 'pmemcheck' +# until https://github.com/pmem/pmdk/issues/5596 is fixed. +@t.require_valgrind_disabled('pmemcheck') class TEST0(PMEM2_FUTURE): size = 64 test_case = 'test_pmem2_future_mover' +# XXX disable the test for 'pmemcheck' +# until https://github.com/pmem/pmdk/issues/5596 is fixed. +@t.require_valgrind_disabled('pmemcheck') class TEST1(PMEM2_FUTURE): size = 4096 test_case = 'test_pmem2_future_mover' +# XXX disable the test for 'pmemcheck' +# until https://github.com/pmem/pmdk/issues/5596 is fixed. +@t.require_valgrind_disabled('pmemcheck') class TEST2(PMEM2_FUTURE): size = 64 test_case = 'test_pmem2_future_vdm' +# XXX disable the test for 'pmemcheck' +# until https://github.com/pmem/pmdk/issues/5596 is fixed. +@t.require_valgrind_disabled('pmemcheck') class TEST3(PMEM2_FUTURE): size = 4096 - test_case = 'test_pmem2_future_vdm' + test_case = 'test_pmem2_future_vdm' \ No newline at end of file