| 35 | #include <iostream> |
| 36 | |
| 37 | int exec_command (const std::vector<std::string>& args) |
| 38 | { |
| 39 | Coprocess proc; |
| 40 | proc.spawn(args); |
| 41 | return proc.wait(); |
| 42 | } |
| 43 | |
| 44 | int exec_command (const std::vector<std::string>& args, std::ostream& output) |
| 45 | { |
no test coverage detected