Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[19665] Hotfix TCP sender resources creation #3932

Merged
merged 6 commits into from
Oct 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refs #19665: fix test mac vars init
Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com>
  • Loading branch information
Mario-DL committed Oct 16, 2023
commit b542c31a8859bba4e38cfaf015561650a143bd2a
12 changes: 6 additions & 6 deletions test/blackbox/common/BlackboxTestsTransportCustom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,12 @@ TEST(ChainingTransportTests, basic_test)
//! a WAN listening address (TCP server)
TEST(ChainingTransportTests, tcp_client_server_with_wan_correct_sender_resources)
{
std::atomic<int> times_writer_init_function_called;
std::atomic<int> times_writer_receive_function_called;
std::atomic<int> times_writer_send_function_called;
std::atomic<int> times_reader_init_function_called;
std::atomic<int> times_reader_receive_function_called;
std::atomic<int> times_reader_send_function_called;
std::atomic<int> times_writer_init_function_called {0};
std::atomic<int> times_writer_receive_function_called{0};
std::atomic<int> times_writer_send_function_called{0};
std::atomic<int> times_reader_init_function_called{0};
std::atomic<int> times_reader_receive_function_called{0};
std::atomic<int> times_reader_send_function_called{0};

eprosima::fastrtps::rtps::PropertyPolicy test_property_policy;
test_property_policy.properties().push_back({test_property_name, test_property_value});
Expand Down