aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-02-25 16:27:35 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-02-25 17:38:30 +0100
commit0816b8e476d20e00cbcffd1e71162adf93e85658 (patch)
tree537711cbc6285e6108fb745fb98665114e27b806 /tests/auto/api
parente455dcff532c6cc1482c844d3f1ffb7130f082ee (diff)
Do not put the plugins where the resources are.
That's not where they belong. Also make less assumptions about the file path leading to them. Ideally, we should also do the latter for the stuff in share/, but then someone would have to touch the horrific qmake code in static.pro. Task-number: QTCREATORBUG-10074 Change-Id: Ide9c4b83dcf0cd7a62b57643b79caf05662358cb Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/api')
-rw-r--r--tests/auto/api/tst_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/api/tst_api.cpp b/tests/auto/api/tst_api.cpp
index 5f55259e1..482b9e22e 100644
--- a/tests/auto/api/tst_api.cpp
+++ b/tests/auto/api/tst_api.cpp
@@ -507,7 +507,7 @@ qbs::SetupProjectParameters TestApi::defaultSetupParameters() const
const QString profileName = QLatin1String("qbs_autotests");
const qbs::Preferences prefs(settings.data(), profileName);
setupParams.setSearchPaths(prefs.searchPaths(qbsRootPath));
- setupParams.setPluginPaths(prefs.pluginPaths(qbsRootPath));
+ setupParams.setPluginPaths(prefs.pluginPaths(qbsRootPath + QLatin1String("/lib")));
QVariantMap buildConfig;
buildConfig.insert(QLatin1String("qbs.profile"), profileName);
buildConfig.insert(QLatin1String("qbs.buildVariant"), QLatin1String("debug"));