Skip to content

Commit

Permalink
test: disable ex_libpmem2/TEST5 with memcheck
Browse files Browse the repository at this point in the history
Disable ex_libpmem2/TEST5 with memcheck until issue pmem#5635 is fixed.

Signed-off-by: Tomasz Gromadzki <tomasz.gromadzki@intel.com>
  • Loading branch information
grom72 committed May 22, 2023
1 parent 83975ef commit 1bac056
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/test/ex_libpmem2/TESTS.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@ def run(self, ctx):
ctx.exec(example_path, *args, stdout_file='out4.log')


# XXX Disable the test execution under pmemcheck with g.PAGE until fixed.
# https://github.com/pmem/pmdk/issues/5641
# XXX Disable the test execution under pmemcheck with g.PAGE and
# g.CACHELINE until the issue
# https://github.com/pmem/pmdk/issues/5641 is fixed.
# additionall test TEST501 has been added to cover non-pmemcheck configs.
class EX_LIBPMEM2_TEST5(EX_LIBPMEM2):

Expand All @@ -93,6 +94,10 @@ class TEST5(EX_LIBPMEM2_TEST5):
pass


# XXX Disable the test execution with 'memcheck' until the issue:
# https://github.com/pmem/pmdk/issues/5635 is fixed.
# additionall test TEST501 has been added to cover non-pmemcheck configs.
@t.require_valgrind_disabled('memcheck', ) # to be removed when fixed
@t.require_valgrind_disabled('pmemcheck')
class TEST501(EX_LIBPMEM2_TEST5): # to be removed when fixed

Expand Down

0 comments on commit 1bac056

Please sign in to comment.