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 377f875
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/test/ex_libpmem2/TESTS.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ 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 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,7 +93,12 @@ class TEST5(EX_LIBPMEM2_TEST5):
pass


@t.require_valgrind_disabled('pmemcheck')
# 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')
@t.require_valgrind_disabled('pmemcheck', 'memcheck')
class TEST501(EX_LIBPMEM2_TEST5): # to be removed when fixed

pass
Expand Down

0 comments on commit 377f875

Please sign in to comment.