|
@@ -52,6 +52,10 @@ int main(int argc, char** argv)
|
|
|
fwProps.insert(ctkPluginConstants::FRAMEWORK_STORAGE_CLEAN, ctkPluginConstants::FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT);
|
|
|
fwProps.insert("pluginfw.testDir", pluginDir);
|
|
|
|
|
|
+#if defined(Q_CC_GNU) && ((__GNUC__ < 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ < 5)))
|
|
|
+ fwProps.insert(ctkPluginConstants::FRAMEWORK_PLUGIN_LOAD_HINTS, QVariant::fromValue<QLibrary::LoadHints>(QLibrary::ExportExternalSymbolsHint));
|
|
|
+#endif
|
|
|
+
|
|
|
testRunner.init(fwProps);
|
|
|
return testRunner.run(argc, argv);
|
|
|
}
|