Blame SOURCES/protobuf-3.14-disable-IoTest.LargeOutput.patch

bd7884
--- a/src/google/protobuf/io/zero_copy_stream_unittest.cc.orig	2021-01-12 12:25:18.471517830 +0100
bd7884
+++ b/src/google/protobuf/io/zero_copy_stream_unittest.cc	2021-01-12 12:25:42.022696126 +0100
bd7884
@@ -712,22 +712,6 @@
bd7884
   }
bd7884
 }
bd7884
 
bd7884
-// Verifies that outputs up to kint32max can be created.
bd7884
-TEST_F(IoTest, LargeOutput) {
bd7884
-  std::string str;
bd7884
-  StringOutputStream output(&str);
bd7884
-  void* unused_data;
bd7884
-  int size;
bd7884
-  // Repeatedly calling Next should eventually grow the buffer to kint32max.
bd7884
-  do {
bd7884
-    EXPECT_TRUE(output.Next(&unused_data, &size));
bd7884
-  } while (str.size() < std::numeric_limits<int>::max());
bd7884
-  // Further increases should be possible.
bd7884
-  output.Next(&unused_data, &size);
bd7884
-  EXPECT_GT(size, 0);
bd7884
-}
bd7884
-
bd7884
-
bd7884
 // To test files, we create a temporary file, write, read, truncate, repeat.
bd7884
 TEST_F(IoTest, FileIo) {
bd7884
   std::string filename = TestTempDir() + "/zero_copy_stream_test_file";