| 49 | } |
| 50 | |
| 51 | void test_buffer_growth_threaded_comm() |
| 52 | { |
| 53 | std::cout << "Test::test_buffer_growth_threaded_comm" << std::endl; |
| 54 | auto buf = sp::check_output("cat ../subprocess.hpp", sp::error{sp::PIPE}); |
| 55 | std::cout << buf.length << std::endl; |
| 56 | assert (buf.length > sp::DEFAULT_BUF_CAP_BYTES); |
| 57 | std::cout << "END_TEST" << std::endl; |
| 58 | } |
| 59 | |
| 60 | int main() { |
| 61 | #ifndef __USING_WINDOWS__ |
nothing calls this directly
no test coverage detected