Skip to content

Commit

Permalink
Refs #16608: Skip test for Data-Sharing
Browse files Browse the repository at this point in the history
Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com>
  • Loading branch information
Mario-DL committed Jan 17, 2023
1 parent 2c6a2db commit 614c609
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/blackbox/common/DDSBlackboxTestsDataReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ TEST_P(DDSDataReader, LivelinessChangedStatusGet)
// unread changes in reader's history after performing a get_first_untaken_info() on a change with no writer matched.
TEST_P(DDSDataReader, ConsistentTotalUnreadAfterGetFirstUntakenInfo)
{
if (enable_datasharing)
{
//! TODO: Datasharing changes the behavior of this test. Changes are
//! instantly removed on removePublisher() call and on the PUBListener callback
GTEST_SKIP() << "Data-sharing removes the changes instantly changing the behavior of this test. Skipping";
}

//! Spawn a couple of participants writer/reader
auto pubsub_writer = std::make_shared<PubSubWriter<HelloWorldPubSubType>>(TEST_TOPIC_NAME);
//! Create a reader that does nothing when new data is available. Neither take nor read it.
Expand Down

0 comments on commit 614c609

Please sign in to comment.