Skip to content

Commit

Permalink
GTEST/UCP/TAG: Fix offload thresh check
Browse files Browse the repository at this point in the history
  • Loading branch information
brminich committed Nov 26, 2020
1 parent 8f21972 commit 40d0848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gtest/ucp/test_ucp_tag.cc
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ UCS_TEST_P(test_ucp_tag_limits, check_max_short_rndv_thresh_zero, "RNDV_THRESH=0
size_t min_rndv = ucp_ep_tag_offload_min_rndv_thresh(ucp_ep_config(sender().ep()));

EXPECT_GT(min_rndv, 0ul); // min_rndv should be RTS size at least
EXPECT_GE(min_rndv,
EXPECT_LE(min_rndv,
ucp_ep_config(sender().ep())->tag.rndv.am_thresh.local);
EXPECT_GE(min_rndv,
EXPECT_LE(min_rndv,
ucp_ep_config(sender().ep())->tag.rndv.rma_thresh.local);
}
}
Expand Down

0 comments on commit 40d0848

Please sign in to comment.