aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucie Gérard <lucie.gerard@qt.io>2024-03-28 15:19:29 +0100
committerLucie Gérard <lucie.gerard@qt.io>2024-04-04 08:22:08 +0100
commit59f2d5c0d01da92f711f919ac1e42e1f3752f3a3 (patch)
treef679066ee3ca7537a01bd43d21a4fd742a98d9d3
parent67a440a3abaf8af09243eb04acd90af4d9a79e76 (diff)
Correct license for test files
According to QUIP-18 [1], all test files should be LicenseRef-Qt-Commercial OR GPL-3.0-only [1]: https://contribute.qt-project.org/quips/18 Task-number: QTBUG-121787 Change-Id: I3c5bce8e959592dfd5aa2879bd59b153616e449b Reviewed-by: Kai Köhne <kai.koehne@qt.io>
-rw-r--r--tests/auto/qml/data/Client.qml2
-rw-r--r--tests/auto/qml/data/tst_bench.qml2
-rw-r--r--tests/auto/qml/data/tst_multiclient.qml2
-rw-r--r--tests/auto/qml/data/tst_webchannel.qml2
-rw-r--r--tests/auto/qml/data/tst_webchannelseparation.qml2
-rw-r--r--tests/auto/qml/qml.cpp2
-rw-r--r--tests/auto/qml/testobject.cpp2
-rw-r--r--tests/auto/qml/testobject.h2
-rw-r--r--tests/auto/qml/testtransport.cpp2
-rw-r--r--tests/auto/qml/testtransport.h2
-rw-r--r--tests/auto/qml/testwebchannel.cpp2
-rw-r--r--tests/auto/qml/testwebchannel.h2
-rw-r--r--tests/auto/webchannel/tst_webchannel.cpp2
-rw-r--r--tests/auto/webchannel/tst_webchannel.h2
-rw-r--r--tests/benchmarks/webchannel/tst_bench_qwebchannel.cpp2
-rw-r--r--tests/benchmarks/webchannel/tst_bench_qwebchannel.h2
16 files changed, 16 insertions, 16 deletions
diff --git a/tests/auto/qml/data/Client.qml b/tests/auto/qml/data/Client.qml
index b05aada..7dbed55 100644
--- a/tests/auto/qml/data/Client.qml
+++ b/tests/auto/qml/data/Client.qml
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtTest
diff --git a/tests/auto/qml/data/tst_bench.qml b/tests/auto/qml/data/tst_bench.qml
index 7f75191..3f4e002 100644
--- a/tests/auto/qml/data/tst_bench.qml
+++ b/tests/auto/qml/data/tst_bench.qml
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtTest
diff --git a/tests/auto/qml/data/tst_multiclient.qml b/tests/auto/qml/data/tst_multiclient.qml
index 981940a..1ea1326 100644
--- a/tests/auto/qml/data/tst_multiclient.qml
+++ b/tests/auto/qml/data/tst_multiclient.qml
@@ -1,6 +1,6 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
// Copyright (C) 2016 basysKom GmbH, info@basyskom.com, author Lutz Schönemann <lutz.schoenemann@basyskom.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtTest
diff --git a/tests/auto/qml/data/tst_webchannel.qml b/tests/auto/qml/data/tst_webchannel.qml
index c563155..9d98d1b 100644
--- a/tests/auto/qml/data/tst_webchannel.qml
+++ b/tests/auto/qml/data/tst_webchannel.qml
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtTest
diff --git a/tests/auto/qml/data/tst_webchannelseparation.qml b/tests/auto/qml/data/tst_webchannelseparation.qml
index 3fd1db5..773e1cb 100644
--- a/tests/auto/qml/data/tst_webchannelseparation.qml
+++ b/tests/auto/qml/data/tst_webchannelseparation.qml
@@ -1,5 +1,5 @@
// Copyright (C) 2016 basysKom GmbH, info@basyskom.com, author Lutz Schönemann <lutz.schoenemann@basyskom.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtTest
diff --git a/tests/auto/qml/qml.cpp b/tests/auto/qml/qml.cpp
index 24c0bbe..252f768 100644
--- a/tests/auto/qml/qml.cpp
+++ b/tests/auto/qml/qml.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtQuickTest/quicktest.h>
#include <QtQml/qqml.h>
diff --git a/tests/auto/qml/testobject.cpp b/tests/auto/qml/testobject.cpp
index 9069eea..8f7be73 100644
--- a/tests/auto/qml/testobject.cpp
+++ b/tests/auto/qml/testobject.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2017 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "testobject.h"
diff --git a/tests/auto/qml/testobject.h b/tests/auto/qml/testobject.h
index ea23088..4612f41 100644
--- a/tests/auto/qml/testobject.h
+++ b/tests/auto/qml/testobject.h
@@ -1,5 +1,5 @@
// Copyright (C) 2017 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef TESTOBJECT_H
diff --git a/tests/auto/qml/testtransport.cpp b/tests/auto/qml/testtransport.cpp
index fd7d0c9..b73712e 100644
--- a/tests/auto/qml/testtransport.cpp
+++ b/tests/auto/qml/testtransport.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "testtransport.h"
diff --git a/tests/auto/qml/testtransport.h b/tests/auto/qml/testtransport.h
index f01ea0b..d8cf424 100644
--- a/tests/auto/qml/testtransport.h
+++ b/tests/auto/qml/testtransport.h
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef TESTTRANSPORT_H
#define TESTTRANSPORT_H
diff --git a/tests/auto/qml/testwebchannel.cpp b/tests/auto/qml/testwebchannel.cpp
index e2f7b20..173919c 100644
--- a/tests/auto/qml/testwebchannel.cpp
+++ b/tests/auto/qml/testwebchannel.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "testwebchannel.h"
diff --git a/tests/auto/qml/testwebchannel.h b/tests/auto/qml/testwebchannel.h
index 462e6de..b849583 100644
--- a/tests/auto/qml/testwebchannel.h
+++ b/tests/auto/qml/testwebchannel.h
@@ -1,5 +1,5 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef TESTWEBCHANNEL_H
#define TESTWEBCHANNEL_H
diff --git a/tests/auto/webchannel/tst_webchannel.cpp b/tests/auto/webchannel/tst_webchannel.cpp
index 8995230..48253d5 100644
--- a/tests/auto/webchannel/tst_webchannel.cpp
+++ b/tests/auto/webchannel/tst_webchannel.cpp
@@ -1,6 +1,6 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
// Copyright (C) 2019 Menlo Systems GmbH, author Arno Rehn <a.rehn@menlosystems.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "tst_webchannel.h"
diff --git a/tests/auto/webchannel/tst_webchannel.h b/tests/auto/webchannel/tst_webchannel.h
index 4fea663..6f57c55 100644
--- a/tests/auto/webchannel/tst_webchannel.h
+++ b/tests/auto/webchannel/tst_webchannel.h
@@ -1,6 +1,6 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
// Copyright (C) 2019 Menlo Systems GmbH, author Arno Rehn <a.rehn@menlosystems.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef TST_WEBCHANNEL_H
#define TST_WEBCHANNEL_H
diff --git a/tests/benchmarks/webchannel/tst_bench_qwebchannel.cpp b/tests/benchmarks/webchannel/tst_bench_qwebchannel.cpp
index 9857f7f..b8c4c69 100644
--- a/tests/benchmarks/webchannel/tst_bench_qwebchannel.cpp
+++ b/tests/benchmarks/webchannel/tst_bench_qwebchannel.cpp
@@ -1,7 +1,7 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
// Copyright (C) 2019 Menlo Systems GmbH, author Arno Rehn <a.rehn@menlosystems.com>
// Copyright (C) 2023 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "tst_bench_qwebchannel.h"
diff --git a/tests/benchmarks/webchannel/tst_bench_qwebchannel.h b/tests/benchmarks/webchannel/tst_bench_qwebchannel.h
index edc21e3..95483f3 100644
--- a/tests/benchmarks/webchannel/tst_bench_qwebchannel.h
+++ b/tests/benchmarks/webchannel/tst_bench_qwebchannel.h
@@ -1,7 +1,7 @@
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Milian Wolff <milian.wolff@kdab.com>
// Copyright (C) 2019 Menlo Systems GmbH, author Arno Rehn <a.rehn@menlosystems.com>
// Copyright (C) 2023 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef TST_BENCH_QWEBCHANNEL_H
#define TST_BENCH_QWEBCHANNEL_H