Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ TEST_F(RecordIntegrationTestFixture, record_all_without_discovery_ignores_later_
auto string_message = get_messages_strings()[0];
string_message->string_value = "Hello World";

auto publisher_node = std::make_shared<rclcpp::Node>("publisher_for_test");

start_recording({true, true, {}, "rmw_format", 1ms});

std::this_thread::sleep_for(100ms);
auto publisher_node = std::make_shared<rclcpp::Node>("publisher_for_test");
auto publisher = publisher_node->create_publisher<test_msgs::msg::Strings>("/string_topic", 10);
for (int i = 0; i < 5; ++i) {
std::this_thread::sleep_for(20ms);
Expand Down