Skip to content

Commit

Permalink
Merge pull request #9882 from tvegas1/test_amo_heap_overflow
Browse files Browse the repository at this point in the history
TEST/GTEST/UCT: Fix heap-buffer overflow in AMO test
  • Loading branch information
yosefe committed May 18, 2024
2 parents 7f30f89 + 24976a8 commit 7d60651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gtest/uct/test_atomic_key_reg_rdma_mem_type.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ UCS_TEST_SKIP_COND_P(uct_atomic_key_reg_rdma_mem_type, fadd64,

run_workers(static_cast<send_func_t>(
&uct_amo_test::atomic_fop<uint64_t, UCT_ATOMIC_OP_ADD>),
recvbuf, std::vector<uint64_t>(1, add), false);
recvbuf, std::vector<uint64_t>(num_senders(), add), false);
wait_for_remote();
}

Expand Down

0 comments on commit 7d60651

Please sign in to comment.