| 38 | } |
| 39 | |
| 40 | void test_shell() |
| 41 | { |
| 42 | #ifdef __USING_WINDOWS__ |
| 43 | auto obuf = check_output({"cmake", "--version"}, shell{false}); |
| 44 | #else |
| 45 | auto obuf = check_output({"ls", "-l"}, shell{false}); |
| 46 | #endif |
| 47 | std::cout << obuf.buf.data() << std::endl; |
| 48 | } |
| 49 | |
| 50 | void test_sleep() |
| 51 | { |
nothing calls this directly
no test coverage detected