| 49 | using internal::Pipe; |
| 50 | |
| 51 | std::string GetNullFile() { |
| 52 | #ifdef _WIN32 |
| 53 | return "NUL"; |
| 54 | #else |
| 55 | return "/dev/null"; |
| 56 | #endif |
| 57 | } |
| 58 | |
| 59 | const std::valarray<int64_t> small_sizes = {8, 24, 33, 1, 32, 192, 16, 40}; |
| 60 | const std::valarray<int64_t> large_sizes = {8192, 100000}; |
no outgoing calls
no test coverage detected