Skip to content

Commit

Permalink
test: disable pmem2_future/TEST[0-3]: w/ pmemcheck until pmem#5596 is…
Browse files Browse the repository at this point in the history
… fixed

Signed-off-by: Tomasz Gromadzki <tomasz.gromadzki@intel.com>
  • Loading branch information
grom72 committed May 22, 2023
1 parent 83975ef commit 3cd33dc
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/test/pmem2_future/TESTS.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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'

0 comments on commit 3cd33dc

Please sign in to comment.