summaryrefslogtreecommitdiffstats
path: root/cmake/qbatchedtestrunner.in.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/qbatchedtestrunner.in.cpp')
-rw-r--r--cmake/qbatchedtestrunner.in.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmake/qbatchedtestrunner.in.cpp b/cmake/qbatchedtestrunner.in.cpp
new file mode 100644
index 0000000000..cc49b77e0a
--- /dev/null
+++ b/cmake/qbatchedtestrunner.in.cpp
@@ -0,0 +1,18 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QList>
+#include <QString>
+#include <QtTest/private/qtestcase_p.h>
+
+int main(int argc, char **argv)
+{
+ if (argc == 1) {
+ printf("%s\n", QTest::qGetTestCaseNames().join(
+ QStringLiteral(" ")).toStdString().c_str());
+ return 0;
+ }
+
+ const auto entryFunction = QTest::qGetTestCaseEntryFunction(QString::fromUtf8(argv[1]));
+ return entryFunction ? entryFunction(argc - 1, argv + 1) : -1;
+}