aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/testmodifydocumentation.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/testmodifydocumentation.cpp b/tests/testmodifydocumentation.cpp
index 5a9e2c386..33a478650 100644
--- a/tests/testmodifydocumentation.cpp
+++ b/tests/testmodifydocumentation.cpp
@@ -23,6 +23,7 @@
#include "testmodifydocumentation.h"
+#include <QCoreApplication>
#include <QtTest/QTest>
#include "testutil.h"
#include <qtdocparser.h>
@@ -61,6 +62,10 @@ void TestModifyDocumentation::testModifyDocumentation()
</description>\n"));
}
-QTEST_MAIN(TestModifyDocumentation)
+// we need an event loop to run these tests
+int argv = 0;
+const char* argc[] = {""};
+QCoreApplication app(argv, const_cast<char**>(argc));
+QTEST_APPLESS_MAIN(TestModifyDocumentation)
#include "testmodifydocumentation.moc"