summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/corelib/json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/corelib/json')
-rw-r--r--tests/benchmarks/corelib/json/CMakeLists.txt10
-rw-r--r--tests/benchmarks/corelib/json/json.pro8
-rw-r--r--tests/benchmarks/corelib/json/tst_bench_qtjson.cpp36
3 files changed, 10 insertions, 44 deletions
diff --git a/tests/benchmarks/corelib/json/CMakeLists.txt b/tests/benchmarks/corelib/json/CMakeLists.txt
index 2108deb6bb..f4feb1ebdb 100644
--- a/tests/benchmarks/corelib/json/CMakeLists.txt
+++ b/tests/benchmarks/corelib/json/CMakeLists.txt
@@ -1,15 +1,13 @@
-# Generated from json.pro.
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: BSD-3-Clause
#####################################################################
## tst_bench_qtjson Binary:
#####################################################################
-qt_add_benchmark(tst_bench_qtjson
+qt_internal_add_benchmark(tst_bench_qtjson
SOURCES
tst_bench_qtjson.cpp
- PUBLIC_LIBRARIES
+ LIBRARIES
Qt::Test
)
-
-#### Keys ignored in scope 1:.:.:json.pro:<TRUE>:
-# TESTDATA = "numbers.json" "test.json"
diff --git a/tests/benchmarks/corelib/json/json.pro b/tests/benchmarks/corelib/json/json.pro
deleted file mode 100644
index c26168945d..0000000000
--- a/tests/benchmarks/corelib/json/json.pro
+++ /dev/null
@@ -1,8 +0,0 @@
-QT = core testlib
-CONFIG += benchmark
-CONFIG -= app_bundle
-
-TARGET = tst_bench_qtjson
-SOURCES += tst_bench_qtjson.cpp
-
-TESTDATA = numbers.json test.json
diff --git a/tests/benchmarks/corelib/json/tst_bench_qtjson.cpp b/tests/benchmarks/corelib/json/tst_bench_qtjson.cpp
index 3a7996f4e7..2202b9a576 100644
--- a/tests/benchmarks/corelib/json/tst_bench_qtjson.cpp
+++ b/tests/benchmarks/corelib/json/tst_bench_qtjson.cpp
@@ -1,32 +1,8 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QtTest>
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QTest>
+#include <QVariantMap>
#include <qjsondocument.h>
#include <qjsonobject.h>
@@ -34,7 +10,7 @@ class BenchmarkQtJson: public QObject
{
Q_OBJECT
public:
- BenchmarkQtJson(QObject *parent = 0);
+ BenchmarkQtJson(QObject *parent = nullptr);
private Q_SLOTS:
void initTestCase();