-------------------------------------------------------------------------
| 145 | |
| 146 | //------------------------------------------------------------------------- |
| 147 | void ParseConfigFile(const ProgramOptions& programOptions, |
| 148 | ProgramOptionsVariablesMap& variablesMap, |
| 149 | const std::string& path) |
| 150 | { |
| 151 | std::ifstream ifs(path.c_str()); |
| 152 | |
| 153 | if (!ifs) |
| 154 | throw Plugin::OptionsParserException("Cannot open config file: " + |
| 155 | path); |
| 156 | |
| 157 | programOptions.FillVariableMap(ifs, variablesMap.GetVariablesMap()); |
| 158 | } |
| 159 | |
| 160 | //--------------------------------------------------------------------- |
| 161 | void AddInputCoverages(const ProgramOptionsVariablesMap& variablesMap, |
no test coverage detected