| 343 | } |
| 344 | |
| 345 | static bool AllInputsAreFiles() { |
| 346 | if (Inputs->empty()) return false; |
| 347 | for (auto &Path : *Inputs) |
| 348 | if (!IsFile(Path)) |
| 349 | return false; |
| 350 | return true; |
| 351 | } |
| 352 | |
| 353 | static std::string GetDedupTokenFromCmdOutput(const std::string &S) { |
| 354 | auto Beg = S.find("DEDUP_TOKEN:"); |
no test coverage detected