Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion test/RequestResponseTest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ class TestHandler : public rsocket::RSocketResponder {
};
}

TEST(RequestResponseTest, Hello) {
TEST(RequestResponseTest, DISABLED_Hello) {
auto port = randPort();
auto server = makeServer(port, std::make_shared<TestHandler>());
auto client = makeClient(port);
Expand Down
4 changes: 2 additions & 2 deletions test/RequestStreamTest.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -31,7 +31,7 @@ class TestHandlerSync : public rsocket::RSocketResponder {
}
};

TEST(RequestStreamTest, HelloSync) {
TEST(RequestStreamTest, DISABLED_HelloSync) {
auto port = randPort();
auto server = makeServer(port, std::make_shared<TestHandlerSync>());
auto client = makeClient(port);
Expand DownExpand Up@@ -76,7 +76,7 @@ class TestHandlerAsync : public rsocket::RSocketResponder {
};
}

TEST(RequestStreamTest, HelloAsync) {
TEST(RequestStreamTest, DISABLED_HelloAsync) {
auto port = randPort();
auto server = makeServer(port, std::make_shared<TestHandlerAsync>());
auto client = makeClient(port);
Expand Down