From aa796a9fc06dc1817b99355a333d2b0edce7215b Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Wed, 19 Feb 2014 09:11:59 -0300 Subject: CppTools: Add all diagnostic messages ...of type 'No such file or directory' to the CPlusPlus::Document. Only the first one was added and as a result, the editor only wavely underlined that one. Add also diagnostic messages if it's not possible to get the file contents. Change-Id: I8389d8e6af9480ea6712759ce5e130e1dd8912f1 Reviewed-by: Erik Verbruggen --- src/plugins/cpptools/cpppreprocessor_test.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/plugins/cpptools/cpppreprocessor_test.cpp') diff --git a/src/plugins/cpptools/cpppreprocessor_test.cpp b/src/plugins/cpptools/cpppreprocessor_test.cpp index 17ab615b02..3178aa9771 100644 --- a/src/plugins/cpptools/cpppreprocessor_test.cpp +++ b/src/plugins/cpptools/cpppreprocessor_test.cpp @@ -161,3 +161,21 @@ void CppToolsPlugin::test_cpppreprocessor_includes_cyclic() QCOMPARE(doc2->resolvedIncludes().size(), 1); QCOMPARE(doc2->resolvedIncludes().first().resolvedFileName(), fileName1); } + +/// Check: All include errors are reported as diagnostic messages. +void CppToolsPlugin::test_cpppreprocessor_includes_allDiagnostics() +{ + QByteArray source = + "#include \n" + "#include \n" + "\n" + ; + + SourcePreprocessor processor; + Document::Ptr document = processor.run(source); + QVERIFY(document); + + QCOMPARE(document->resolvedIncludes().size(), 0); + QCOMPARE(document->unresolvedIncludes().size(), 2); + QCOMPARE(document->diagnosticMessages().size(), 2); +} -- cgit v1.2.1