| 31 | }; |
| 32 | |
| 33 | std::vector<std::string> BuildArgs_(CrashKind_ kind) |
| 34 | { |
| 35 | return { |
| 36 | "--mode"s, "LoggingCrashTest"s, |
| 37 | "--submode"s, std::to_string(static_cast<int>(kind)), |
| 38 | "--log-folder"s, logFolder_, |
| 39 | "--log-name-pid"s, |
| 40 | "--log-level"s, "debug"s, |
| 41 | }; |
| 42 | } |
| 43 | |
| 44 | std::string ReadAllText_(const fs::path& path) |
| 45 | { |