diff options
author | Bernd Weimer <bernd.weimer@pelagicore.com> | 2016-09-16 18:01:37 +0200 |
---|---|---|
committer | Robert Griebl <robert.griebl@pelagicore.com> | 2016-09-19 15:40:08 +0000 |
commit | c210dbad22e897c31255bbc27acd040c34044e94 (patch) | |
tree | 19cf9d369a4bbb2865dc0b8b9c007b9ee2bc510b /tests/packager-tool | |
parent | a0da7907b96b15bacabda182e205bec1c5b8a946 (diff) | |
download | qtapplicationmanager-c210dbad22e897c31255bbc27acd040c34044e94.tar.gz |
Add singleProcess property to ApplicationManager
Added a new read-only property "singleProcess" to the ApplicationManager
element. It indicates whether the application-manager runs in single-
or multi-process mode. This information can be handy in particular
during development.
Change-Id: I04a54c2d0b19cbcad31714a7996ba7b6af07d6c6
Reviewed-by: Nedim Hadzic <nedim.hadzic@pelagicore.com>
Reviewed-by: Robert Griebl <robert.griebl@pelagicore.com>
Diffstat (limited to 'tests/packager-tool')
-rw-r--r-- | tests/packager-tool/tst_packager-tool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/packager-tool/tst_packager-tool.cpp b/tests/packager-tool/tst_packager-tool.cpp index ea8c4777..81c45865 100644 --- a/tests/packager-tool/tst_packager-tool.cpp +++ b/tests/packager-tool/tst_packager-tool.cpp @@ -91,7 +91,7 @@ void tst_PackagerTool::initTestCase() m_ai = ApplicationInstaller::createInstance(locations, pathTo("manifests"), pathTo("image-mounts"), &errorString); QVERIFY2(m_ai, qPrintable(errorString)); - QVERIFY2(ApplicationManager::createInstance(0, &errorString), qPrintable(errorString)); + QVERIFY2(ApplicationManager::createInstance(0, true, &errorString), qPrintable(errorString)); // crypto stuff - we need to load the root CA and developer CA certificates |