Skip to content

Commit

Permalink
Refs #19452: Remove comments
Browse files Browse the repository at this point in the history
Signed-off-by: elianalf <[email protected]>
  • Loading branch information
elianalf committed Jan 26, 2024
1 parent 039a85b commit 420c938
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions test/blackbox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,8 @@ set(BLACKBOXTESTS_SOURCE ${BLACKBOXTESTS_TEST_SOURCE}
utils/print_functions.cpp

common/DatagramInjectionTransport.cpp
# TODO(jlbueno): Uncomment after migrating to Fast DDS API
api/dds-pim/TCPReqRepHelloWorldRequester.cpp
api/dds-pim/TCPReqRepHelloWorldReplier.cpp
api/dds-pim/TCPReqRepHelloWorldRequester.cpp
api/dds-pim/TCPReqRepHelloWorldReplier.cpp
)

file(GLOB DDS_BLACKBOXTESTS_TEST_SOURCE "common/DDSBlackboxTests*.cpp")
Expand Down
10 changes: 4 additions & 6 deletions test/blackbox/common/BlackboxTestsTransportTCP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#include <fastdds/rtps/transport/TCPv4TransportDescriptor.h>
#include <fastdds/rtps/transport/TCPv6TransportDescriptor.h>

// TODO(jlbueno): Uncomment after migrating to Fast DDS API
#include "../api/dds-pim/TCPReqRepHelloWorldRequester.hpp"
#include "../api/dds-pim/TCPReqRepHelloWorldReplier.hpp"
#include "PubSubReader.hpp"
Expand Down Expand Up @@ -66,7 +65,6 @@ class TransportTCP : public testing::TestWithParam<std::tuple<communication_type
std::shared_ptr<eprosima::fastdds::rtps::TCPTransportDescriptor> test_transport_;
};

// TODO(jlbueno): Uncomment after migrating to Fast DDS API

// TCP and Domain management with logical ports tests
TEST_P(TransportTCP, TCPDomainHelloWorld_P0_P1_D0_D0)
Expand Down Expand Up @@ -405,7 +403,6 @@ TEST_P(TransportTCP, TCPMaxInitialPeer_P0_5_P4)


#if TLS_FOUND
// TODO(jlbueno): Uncomment after migrating to Fast DDS API

TEST_P(TransportTCP, TCP_TLS)
{
Expand Down Expand Up @@ -498,7 +495,6 @@ void tls_init()
#endif // if TLS_FOUND

// Regression test for ShrinkLocators/transform_remote_locators mechanism.
// TODO(jlbueno): Uncomment after migrating to Fast DDS API

TEST_P(TransportTCP, TCPLocalhost)
{
Expand Down Expand Up @@ -623,7 +619,6 @@ TEST_P(TransportTCP, TCPv6_copy)

// Test connection is successfully restablished after dropping and relaunching a TCP client (requester)
// Issue -> https://github.com/eProsima/Fast-DDS/issues/2409
// TODO(jlbueno): Uncomment after migrating to Fast DDS API

TEST(TransportTCP, Client_reconnection)
{
Expand Down Expand Up @@ -684,7 +679,10 @@ TEST(TransportTCP, Client_reconnection)
delete requester;
}


// Test copy constructor and copy assignment for TCPv4
TEST_P(TransportTCP, TCPv4_autofill_port)
{
PubSubReader<HelloWorldPubSubType> p1(TEST_TOPIC_NAME);
PubSubReader<HelloWorldPubSubType> p2(TEST_TOPIC_NAME);

// Add TCP Transport with listening port 0
Expand Down

0 comments on commit 420c938

Please sign in to comment.