aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-18 11:06:49 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-18 11:06:49 +0100
commit6be59df7036f8df385da29051c5320563518728a (patch)
tree83006a61246ad1aa65677e007f0b4d38f9e7f158
parent120524a139dbac5d55c952de5dba0e23ba1025f8 (diff)
downloadlibquotient-6be59df7036f8df385da29051c5320563518728a.tar.gz
libquotient-6be59df7036f8df385da29051c5320563518728a.zip
Use QCoreApplication in autotests
QEventLoop refuses to work without an application object instance.
-rw-r--r--autotests/testgroupsession.cpp2
-rw-r--r--autotests/testolmaccount.cpp2
-rw-r--r--autotests/testolmsession.cpp2
-rw-r--r--autotests/testolmutility.cpp3
4 files changed, 4 insertions, 5 deletions
diff --git a/autotests/testgroupsession.cpp b/autotests/testgroupsession.cpp
index 4425a006..2b949578 100644
--- a/autotests/testgroupsession.cpp
+++ b/autotests/testgroupsession.cpp
@@ -51,4 +51,4 @@ void TestOlmSession::groupSessionCryptoValid()
QCOMPARE(0, decryptionResult.second);
}
-QTEST_APPLESS_MAIN(TestOlmSession)
+QTEST_GUILESS_MAIN(TestOlmSession)
diff --git a/autotests/testolmaccount.cpp b/autotests/testolmaccount.cpp
index 37d9f1d1..760276c8 100644
--- a/autotests/testolmaccount.cpp
+++ b/autotests/testolmaccount.cpp
@@ -573,4 +573,4 @@ void TestOlmAccount::enableEncryption()
QVERIFY(spy2.wait(10000));
}
-QTEST_APPLESS_MAIN(TestOlmAccount)
+QTEST_GUILESS_MAIN(TestOlmAccount)
diff --git a/autotests/testolmsession.cpp b/autotests/testolmsession.cpp
index 12279cb6..5436c392 100644
--- a/autotests/testolmsession.cpp
+++ b/autotests/testolmsession.cpp
@@ -77,4 +77,4 @@ void TestOlmSession::correctSessionOrdering()
QCOMPARE(sessionList[2]->sessionId(), session1Id);
}
-QTEST_APPLESS_MAIN(TestOlmSession)
+QTEST_GUILESS_MAIN(TestOlmSession)
diff --git a/autotests/testolmutility.cpp b/autotests/testolmutility.cpp
index ca5aa1fd..b4532c8d 100644
--- a/autotests/testolmutility.cpp
+++ b/autotests/testolmutility.cpp
@@ -125,5 +125,4 @@ void TestOlmUtility::validUploadKeysRequest()
QVERIFY(verifyIdentitySignature(fromJson<DeviceKeys>(body), deviceId, userId));
QVERIFY(verifyIdentitySignature(deviceKeys, deviceId, userId));
}
-
-QTEST_APPLESS_MAIN(TestOlmUtility)
+QTEST_GUILESS_MAIN(TestOlmUtility)