summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorLucie Gérard <lucie.gerard@qt.io>2024-02-19 12:29:13 +0100
committerLucie Gérard <lucie.gerard@qt.io>2024-02-20 16:22:28 +0100
commitd478ca528511fcaa95491bcedaa259b2f6c5e727 (patch)
tree1e7d0e56e0a2a26cfdd53078bea32a23894157e2 /config.tests
parent657e0ec3430a0da377fadaedd7da6e51e5b4c0ea (diff)
Correct license in config.test
According to QUIP-18 [1], all build system files should be BSD-3-Clause [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: I06880d91e4c6f8d7a92d249f3d216b2bc82fdeed Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/arch/arch.cpp2
-rw-r--r--config.tests/binary_for_strip/lib1.cpp2
-rw-r--r--config.tests/precompile_header/header.h2
-rw-r--r--config.tests/precompile_header/main.cpp2
-rw-r--r--config.tests/static_link_order/main.cpp2
-rw-r--r--config.tests/static_link_order/objlib.cpp2
-rw-r--r--config.tests/static_link_order/staticlib1.cpp2
-rw-r--r--config.tests/static_link_order/staticlib2.cpp2
-rw-r--r--config.tests/x86_simd/main.cpp2
-rw-r--r--config.tests/x86intrin/main.cpp2
10 files changed, 10 insertions, 10 deletions
diff --git a/config.tests/arch/arch.cpp b/config.tests/arch/arch.cpp
index ffb6c787ff..44ec721432 100644
--- a/config.tests/arch/arch.cpp
+++ b/config.tests/arch/arch.cpp
@@ -1,6 +1,6 @@
// Copyright (C) 2016 The Qt Company Ltd.
// Copyright (C) 2016 Intel Corporation.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+// SPDX-License-Identifier: BSD-3-Clause
#define QGLOBAL_H
#include "../../src/corelib/global/archdetect.cpp"
diff --git a/config.tests/binary_for_strip/lib1.cpp b/config.tests/binary_for_strip/lib1.cpp
index bb57c4da77..d2b7847557 100644
--- a/config.tests/binary_for_strip/lib1.cpp
+++ b/config.tests/binary_for_strip/lib1.cpp
@@ -1,4 +1,4 @@
// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: BSD-3-Clause
int libfunc() { return 0; }
diff --git a/config.tests/precompile_header/header.h b/config.tests/precompile_header/header.h
index 4288ee2731..0e35f8cb85 100644
--- a/config.tests/precompile_header/header.h
+++ b/config.tests/precompile_header/header.h
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+// SPDX-License-Identifier: BSD-3-Clause
#ifndef HEADER_H
#define HEADER_H
diff --git a/config.tests/precompile_header/main.cpp b/config.tests/precompile_header/main.cpp
index e93b02256d..3ea84a8dae 100644
--- a/config.tests/precompile_header/main.cpp
+++ b/config.tests/precompile_header/main.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+// SPDX-License-Identifier: BSD-3-Clause
#ifndef HEADER_H
# error no go
#endif
diff --git a/config.tests/static_link_order/main.cpp b/config.tests/static_link_order/main.cpp
index 162c48ce3f..93b8825fd9 100644
--- a/config.tests/static_link_order/main.cpp
+++ b/config.tests/static_link_order/main.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: BSD-3-Clause
void staticLibFunc1();
diff --git a/config.tests/static_link_order/objlib.cpp b/config.tests/static_link_order/objlib.cpp
index 0da71f4552..0ad7b76a80 100644
--- a/config.tests/static_link_order/objlib.cpp
+++ b/config.tests/static_link_order/objlib.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: BSD-3-Clause
void staticLibFunc2();
diff --git a/config.tests/static_link_order/staticlib1.cpp b/config.tests/static_link_order/staticlib1.cpp
index 19caeead5c..f120f9229b 100644
--- a/config.tests/static_link_order/staticlib1.cpp
+++ b/config.tests/static_link_order/staticlib1.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: BSD-3-Clause
void objLibFunc();
diff --git a/config.tests/static_link_order/staticlib2.cpp b/config.tests/static_link_order/staticlib2.cpp
index 61089d53bd..a9abf424fe 100644
--- a/config.tests/static_link_order/staticlib2.cpp
+++ b/config.tests/static_link_order/staticlib2.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: BSD-3-Clause
void staticLibFunc2() {
}
diff --git a/config.tests/x86_simd/main.cpp b/config.tests/x86_simd/main.cpp
index 5af3496769..8634e29cf2 100644
--- a/config.tests/x86_simd/main.cpp
+++ b/config.tests/x86_simd/main.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2017 Intel Corporation.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+// SPDX-License-Identifier: BSD-3-Clause
// All of our supported compilers support <immintrin.h>
#include <immintrin.h>
diff --git a/config.tests/x86intrin/main.cpp b/config.tests/x86intrin/main.cpp
index 297586fb4e..2e6b198710 100644
--- a/config.tests/x86intrin/main.cpp
+++ b/config.tests/x86intrin/main.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2022 Intel Corporation.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+// SPDX-License-Identifier: BSD-3-Clause
#include <immintrin.h>