| 723 | } |
| 724 | |
| 725 | Status Subprocess::Call(const string& arg_str) { |
| 726 | vector<string> argv = Split(arg_str, " "); |
| 727 | return Call(argv, "", nullptr, nullptr); |
| 728 | } |
| 729 | |
| 730 | Status Subprocess::Call(const vector<string>& argv, |
| 731 | const string& stdin_in, |
nothing calls this directly
no test coverage detected