| 2829 | } |
| 2830 | |
| 2831 | void cmCTest::PopulateCustomInteger(cmMakefile* mf, std::string const& def, |
| 2832 | int& val) |
| 2833 | { |
| 2834 | cmValue dval = mf->GetDefinition(def); |
| 2835 | if (!dval) { |
| 2836 | return; |
| 2837 | } |
| 2838 | val = atoi(dval->c_str()); |
| 2839 | } |
| 2840 | |
| 2841 | std::string cmCTest::GetShortPathToFile(std::string const& cfname) |
| 2842 | { |
no test coverage detected