Fixed #2732 (Make it easier for users to tell 'How to supply header files')
This commit is contained in:
parent
385478d89e
commit
94454df14f
|
@ -2378,7 +2378,7 @@ void Preprocessor::missingInclude(const std::string &filename, unsigned int line
|
|||
locationList.push_back(loc);
|
||||
}
|
||||
ErrorLogger::ErrorMessage errmsg(locationList, Severity::information,
|
||||
(headerType==SystemHeader) ? "Include file: <" + header + "> not found." : "Include file: \"" + header + "\" not found.",
|
||||
(headerType==SystemHeader) ? "Include file: <" + header + "> not found." : "Include file: \"" + header + "\" not found. Use -I to configure include paths.",
|
||||
msgtype, false);
|
||||
errmsg.file0 = file0;
|
||||
_errorLogger->reportInfo(errmsg);
|
||||
|
|
|
@ -3535,7 +3535,7 @@ private:
|
|||
errout.str("");
|
||||
settings.checkConfiguration = true;
|
||||
preprocessor.handleIncludes(code,"test.c",includePaths,defs,pragmaOnce,std::list<std::string>());
|
||||
ASSERT_EQUALS("[test.c:1]: (information) Include file: \"missing-include!!.h\" not found.\n", errout.str());
|
||||
ASSERT_EQUALS("[test.c:1]: (information) Include file: \"missing-include!!.h\" not found. Use -I to configure include paths.\n", errout.str());
|
||||
|
||||
pragmaOnce.clear();
|
||||
errout.str("");
|
||||
|
@ -3882,7 +3882,7 @@ private:
|
|||
preprocessor.preprocess(istr, actual, "file.c");
|
||||
|
||||
// Compare results..
|
||||
ASSERT_EQUALS("[file.c:2]: (information) Include file: \"config.h\" not found.\n", errout.str());
|
||||
ASSERT_EQUALS("[file.c:2]: (information) Include file: \"config.h\" not found. Use -I to configure include paths.\n", errout.str());
|
||||
ASSERT_EQUALS("\n\n\n\n\n", actual[""]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue