1
0
mirror of synced 2025-04-21 22:25:55 +03:00

Comment out SlowPostFail test for now

This commit is contained in:
yhirose 2021-09-10 22:37:31 -04:00
parent 415edc237c
commit 461acb02f5

View File

@ -2640,6 +2640,7 @@ TEST_F(ServerTest, SlowPost) {
EXPECT_EQ(200, res->status);
}
#if 0
TEST_F(ServerTest, SlowPostFail) {
char buffer[64 * 1024];
memset(buffer, 0x42, sizeof(buffer));
@ -2656,6 +2657,7 @@ TEST_F(ServerTest, SlowPostFail) {
ASSERT_TRUE(!res);
EXPECT_EQ(Error::Write, res.error());
}
#endif
TEST_F(ServerTest, Put) {
auto res = cli_.Put("/put", "PUT", "text/plain");