| 148 | } |
| 149 | |
| 150 | void TestProcessInclude(const string& name, const string& value) { |
| 151 | CHECK(name == "include-dir"); |
| 152 | static const char* res[] = { |
| 153 | "include", |
| 154 | "/usr/include", |
| 155 | "/usr/local/include", |
| 156 | "/proj/include", |
| 157 | "/usr/include" }; |
| 158 | CHECK(value == res[_I++]); |
| 159 | } |
| 160 | |
| 161 | void TestProcessVerbose(const string& name, const string& value) { |
| 162 | CHECK(name == "verbose"); |
nothing calls this directly
no outgoing calls
no test coverage detected