Skip to content

Commit 63105cd

Browse files
authored
Skip rmw zenoh content filtering tests (#2627)
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
1 parent a78d0cb commit 63105cd

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

rclcpp/test/rclcpp/test_subscription_content_filter.cpp

+15
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,11 @@ TEST_F(TestContentFilterSubscription, set_content_filter)
175175

176176
TEST_F(TestContentFilterSubscription, content_filter_get_begin)
177177
{
178+
std::string rmw_implementation_str = std::string(rmw_get_implementation_identifier());
179+
if (rmw_implementation_str == "rmw_zenoh_cpp") {
180+
GTEST_SKIP();
181+
}
182+
178183
using namespace std::chrono_literals;
179184
{
180185
test_msgs::msg::BasicTypes msg;
@@ -218,6 +223,11 @@ TEST_F(TestContentFilterSubscription, content_filter_get_begin)
218223

219224
TEST_F(TestContentFilterSubscription, content_filter_get_later)
220225
{
226+
std::string rmw_implementation_str = std::string(rmw_get_implementation_identifier());
227+
if (rmw_implementation_str == "rmw_zenoh_cpp") {
228+
GTEST_SKIP();
229+
}
230+
221231
using namespace std::chrono_literals;
222232
{
223233
test_msgs::msg::BasicTypes msg;
@@ -266,6 +276,11 @@ TEST_F(TestContentFilterSubscription, content_filter_get_later)
266276

267277
TEST_F(TestContentFilterSubscription, content_filter_reset)
268278
{
279+
std::string rmw_implementation_str = std::string(rmw_get_implementation_identifier());
280+
if (rmw_implementation_str == "rmw_zenoh_cpp") {
281+
GTEST_SKIP();
282+
}
283+
269284
using namespace std::chrono_literals;
270285
{
271286
test_msgs::msg::BasicTypes msg;

0 commit comments

Comments
 (0)