| 42 | } |
| 43 | |
| 44 | void test_buffer_growth() |
| 45 | { |
| 46 | auto obuf = sp::check_output({"cat", "../subprocess.hpp"}); |
| 47 | std::cout << obuf.length << std::endl; |
| 48 | assert (obuf.length > sp::DEFAULT_BUF_CAP_BYTES); |
| 49 | } |
| 50 | |
| 51 | void test_buffer_growth_threaded_comm() |
| 52 | { |
nothing calls this directly
no test coverage detected