| 244 | // This is slightly more realistic than the above |
| 245 | |
| 246 | static void FileOutputStreamSmallWritesToPipe( |
| 247 | benchmark::State& state) { // NOLINT non-const reference |
| 248 | std::shared_ptr<io::OutputStream> stream; |
| 249 | std::shared_ptr<BackgroundReader> reader; |
| 250 | SetupPipeWriter(&stream, &reader); |
| 251 | |
| 252 | BenchmarkStreamingWrites(state, small_sizes, stream.get(), reader.get()); |
| 253 | } |
| 254 | |
| 255 | static void FileOutputStreamLargeWritesToPipe( |
| 256 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected