summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/plugin/plugin.pro
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2018-07-30 10:35:01 +0200
committerThiago Macieira <thiago.macieira@intel.com>2018-08-03 20:26:58 +0000
commit22eb4bacaedab1612977fc23c5720a86179d1b04 (patch)
tree9281ed2c3e30a66ddee95675989476a7cbb76bdf /tests/auto/corelib/plugin/plugin.pro
parentdc8d4fe30f2f88982166b5c593f90deb3964fb52 (diff)
Enable QPluginLoader test for static builds
The majority of tests use QPluginLoader::setFileName implicitly, which refuses to do any work in static builds. Therefore the majority of tests are skipped. But in the future we'll get tests here that for example use QPluginLoader::staticPlugins() and for that we want to include the sub-directory in the build and test run. Change-Id: Ib8ec274e22ac8050feaca8967eb8626b53876b92 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'tests/auto/corelib/plugin/plugin.pro')
-rw-r--r--tests/auto/corelib/plugin/plugin.pro3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/corelib/plugin/plugin.pro b/tests/auto/corelib/plugin/plugin.pro
index b094c24e55..240608fddf 100644
--- a/tests/auto/corelib/plugin/plugin.pro
+++ b/tests/auto/corelib/plugin/plugin.pro
@@ -11,6 +11,5 @@ qtConfig(library): SUBDIRS += \
contains(CONFIG, static) {
message(Disabling tests requiring shared build of Qt)
SUBDIRS -= qfactoryloader \
- qplugin \
- qpluginloader
+ qplugin
}