aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/tst_api.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-04-19 14:54:17 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-04-23 13:07:22 +0000
commitece99a4c5f8710b11cd17ff48f4fc2d5ced645b3 (patch)
tree511283efe12553d13488841c3a48d47110680b73 /tests/auto/api/tst_api.cpp
parentca2ad19ea60207b221d43dc5e4d28e90fa33bd11 (diff)
API: Fix ProductData::installableArtifacts()v1.11.1
We iterated over the wrong list when collecting the artifacts, so we missed generated artifacts that are not in the list of target artifacts. Change-Id: Iea90c5de217e0ad4efb77331a31b8a5d778c66d1 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'tests/auto/api/tst_api.cpp')
-rw-r--r--tests/auto/api/tst_api.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/api/tst_api.cpp b/tests/auto/api/tst_api.cpp
index d938065ee..a608d597c 100644
--- a/tests/auto/api/tst_api.cpp
+++ b/tests/auto/api/tst_api.cpp
@@ -1400,9 +1400,9 @@ void TestApi::installableFiles()
});
QVERIFY(product.isValid());
const QList<qbs::ArtifactData> beforeInstallableFiles = product.installableArtifacts();
- QCOMPARE(beforeInstallableFiles.size(), 2);
+ QCOMPARE(beforeInstallableFiles.size(), 3);
for (const qbs::ArtifactData &f : beforeInstallableFiles) {
- if (!f.filePath().endsWith("main.cpp")) {
+ if (!QFileInfo(f.filePath()).fileName().startsWith("main")) {
QVERIFY(f.isExecutable());
QString expectedTargetFilePath = qbs::Internal::HostOsInfo
::appendExecutableSuffix(QLatin1String("/tmp/usr/bin/installedApp"));