Skip to content

Commit

Permalink
Merge pull request #5695 from grom72/test-dissable-5694
Browse files Browse the repository at this point in the history
test: disable pmem2_mover/TEST[6-8] for drd
  • Loading branch information
janekmi committed May 25, 2023
2 parents b2b4e48 + 1aa215c commit f2badd3
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions src/test/pmem2_mover/TESTS.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,18 @@ class PMEM2_MOVER_MT_TEST6(PMEM2_MOVER_MT):
test_case = "test_mover_memcpy_multithreaded"


# XXX disable the test for 'drd``
# until https://github.com/pmem/pmdk/issues/5694 is fixed.
@t.require_valgrind_disabled('drd')
@g.require_granularity(g.PAGE, g.CACHELINE)
class TEST6(PMEM2_MOVER_MT_TEST6):
pass


# XXX disable the test for 'drd``
# until https://github.com/pmem/pmdk/issues/5694 is fixed.
@t.require_valgrind_disabled('pmemcheck', 'drd')
@g.require_granularity(g.BYTE)
@t.require_valgrind_disabled('pmemcheck')
class TEST61(PMEM2_MOVER_MT_TEST6):
pass

Expand All @@ -116,13 +121,18 @@ class PMEM2_MOVER_MT_TEST7(PMEM2_MOVER_MT):
test_case = "test_mover_memmove_multithreaded"


# XXX disable the test for 'drd``
# until https://github.com/pmem/pmdk/issues/5694 is fixed.
@t.require_valgrind_disabled('drd')
@g.require_granularity(g.PAGE, g.CACHELINE)
class TEST7(PMEM2_MOVER_MT_TEST7):
pass


# XXX disable the test for 'drd``
# until https://github.com/pmem/pmdk/issues/5694 is fixed.
@t.require_valgrind_disabled('pmemcheck', 'drd')
@g.require_granularity(g.BYTE)
@t.require_valgrind_disabled('pmemcheck')
class TEST71(PMEM2_MOVER_MT_TEST7):
pass

Expand All @@ -136,13 +146,18 @@ class PMEM2_MOVER_MT_TEST8(PMEM2_MOVER_MT):
test_case = "test_mover_memset_multithreaded"


# XXX disable the test for 'drd``
# until https://github.com/pmem/pmdk/issues/5694 is fixed.
@t.require_valgrind_disabled('drd')
@g.require_granularity(g.PAGE, g.CACHELINE)
class TEST8(PMEM2_MOVER_MT_TEST8):
pass


# XXX disable the test for 'drd``
# until https://github.com/pmem/pmdk/issues/5694 is fixed.
@t.require_valgrind_disabled('pmemcheck', 'drd')
@g.require_granularity(g.BYTE)
@t.require_valgrind_disabled('pmemcheck')
class TEST81(PMEM2_MOVER_MT_TEST8):
pass

Expand Down

0 comments on commit f2badd3

Please sign in to comment.