Skip to content

Commit

Permalink
TEST/MD: Fix env variables prefixes for test_ib_md
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankochin committed Jan 8, 2024
1 parent 967fe61 commit 59cf226
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/gtest/uct/ib/test_ib_md.cc
Original file line number Diff line number Diff line change
Expand Up @@ -288,13 +288,14 @@ void test_ib_md::test_mkey_pack_mt(bool invalidate)
test_mkey_pack_mt_internal(UCT_MD_MEM_ACCESS_ALL, invalidate);
}

UCS_TEST_P(test_ib_md, pack_mkey_mt, "REG_MT_THRESH=128K", "REG_MT_CHUNK=128K")
UCS_TEST_P(test_ib_md, pack_mkey_mt, "IB_REG_MT_THRESH=128K",
"IB_REG_MT_CHUNK=128K")
{
test_mkey_pack_mt(false);
}

UCS_TEST_P(test_ib_md, pack_mkey_mt_invalidate, "REG_MT_THRESH=128K",
"REG_MT_CHUNK=128K")
UCS_TEST_P(test_ib_md, pack_mkey_mt_invalidate, "IB_REG_MT_THRESH=128K",
"IB_REG_MT_CHUNK=128K")
{
test_mkey_pack_mt(true);
}
Expand Down

0 comments on commit 59cf226

Please sign in to comment.