aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlimportscanner
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2021-03-30 14:38:10 +0200
committerKai Köhne <kai.koehne@qt.io>2021-05-11 08:48:11 +0200
commitc4425426278c1f5e94d51b465a746ab6a5ff74d7 (patch)
tree81ceb2727330b7737ab3651aea8e1b0767d0aa85 /tests/auto/qml/qmlimportscanner
parent4c236f12f952711f3f4b7f9eccef82c8a87a0a0e (diff)
Move tools to libexec
Move qmlimportscanner, qmltyperegistrar, qmljsrootgen, qmlcachegen to libexec These are internal tools that is not supposed to be run by the user directly. [ChangeLog][Linux] qmlimportscanner, qmltyperegistrar, qmljsrootgen, qmlcachegen tools got moved from QTDIR/bin into QTDIR/libexec directory. Task-number: QTBUG-88791 Change-Id: I2739044e872ec83ef7da7dd857c26395ecfd407d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Maximilian Goldstein <max.goldstein@qt.io>
Diffstat (limited to 'tests/auto/qml/qmlimportscanner')
-rw-r--r--tests/auto/qml/qmlimportscanner/tst_qmlimportscanner.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/qml/qmlimportscanner/tst_qmlimportscanner.cpp b/tests/auto/qml/qmlimportscanner/tst_qmlimportscanner.cpp
index ca11d00915..5b8b92748a 100644
--- a/tests/auto/qml/qmlimportscanner/tst_qmlimportscanner.cpp
+++ b/tests/auto/qml/qmlimportscanner/tst_qmlimportscanner.cpp
@@ -55,7 +55,8 @@ private:
void TestQmlimportscanner::initTestCase()
{
QQmlDataTest::initTestCase();
- m_qmlimportscannerPath = QLibraryInfo::path(QLibraryInfo::BinariesPath) + QLatin1String("/qmlimportscanner");
+ m_qmlimportscannerPath = QLibraryInfo::path(QLibraryInfo::LibraryExecutablesPath)
+ + QLatin1String("/qmlimportscanner");
#ifdef Q_OS_WIN
m_qmlimportscannerPath += QLatin1String(".exe");
#endif