Skip to content

Commit

Permalink
Skip rmw zenoh content filtering tests (#2627)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde authored Sep 23, 2024
1 parent a78d0cb commit 63105cd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions rclcpp/test/rclcpp/test_subscription_content_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ TEST_F(TestContentFilterSubscription, set_content_filter)

TEST_F(TestContentFilterSubscription, content_filter_get_begin)
{
std::string rmw_implementation_str = std::string(rmw_get_implementation_identifier());
if (rmw_implementation_str == "rmw_zenoh_cpp") {
GTEST_SKIP();
}

using namespace std::chrono_literals;
{
test_msgs::msg::BasicTypes msg;
Expand Down Expand Up @@ -218,6 +223,11 @@ TEST_F(TestContentFilterSubscription, content_filter_get_begin)

TEST_F(TestContentFilterSubscription, content_filter_get_later)
{
std::string rmw_implementation_str = std::string(rmw_get_implementation_identifier());
if (rmw_implementation_str == "rmw_zenoh_cpp") {
GTEST_SKIP();
}

using namespace std::chrono_literals;
{
test_msgs::msg::BasicTypes msg;
Expand Down Expand Up @@ -266,6 +276,11 @@ TEST_F(TestContentFilterSubscription, content_filter_get_later)

TEST_F(TestContentFilterSubscription, content_filter_reset)
{
std::string rmw_implementation_str = std::string(rmw_get_implementation_identifier());
if (rmw_implementation_str == "rmw_zenoh_cpp") {
GTEST_SKIP();
}

using namespace std::chrono_literals;
{
test_msgs::msg::BasicTypes msg;
Expand Down

0 comments on commit 63105cd

Please sign in to comment.