aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/clangstaticanalyzer/clangstaticanalyzerunittests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/clangstaticanalyzer/clangstaticanalyzerunittests.cpp')
-rw-r--r--plugins/clangstaticanalyzer/clangstaticanalyzerunittests.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/clangstaticanalyzer/clangstaticanalyzerunittests.cpp b/plugins/clangstaticanalyzer/clangstaticanalyzerunittests.cpp
index 21b086858e3..4eed4205747 100644
--- a/plugins/clangstaticanalyzer/clangstaticanalyzerunittests.cpp
+++ b/plugins/clangstaticanalyzer/clangstaticanalyzerunittests.cpp
@@ -94,10 +94,16 @@ void ClangStaticAnalyzerUnitTests::testProject_data()
{
QTest::addColumn<QString>("projectFilePath");
QTest::addColumn<int>("expectedDiagCount");
- QTest::newRow("qbs project")
+
+ QTest::newRow("simple qbs project")
<< QString(m_tmpDir->path() + QLatin1String("/simple/simple.qbs")) << 1;
- QTest::newRow("qmake project")
+ QTest::newRow("simple qmake project")
<< QString(m_tmpDir->path() + QLatin1String("/simple/simple.pro")) << 1;
+
+ QTest::newRow("qt-widgets-app qbs project")
+ << QString(m_tmpDir->path() + QLatin1String("/qt-widgets-app/qt-widgets-app.qbs")) << 0;
+ QTest::newRow("qt-widgets-app qmake project")
+ << QString(m_tmpDir->path() + QLatin1String("/qt-widgets-app/qt-widgets-app.pro")) << 0;
}
} // namespace Internal