summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global
diff options
context:
space:
mode:
authorAhmad Samir <a.samirh78@gmail.com>2023-06-24 19:37:42 +0300
committerMarc Mutz <marc.mutz@qt.io>2023-06-29 15:19:52 +0000
commit728b991b93960cd8d137817957897693a94299d7 (patch)
treed8e5227ca88a29b551e08fd3dd25132d5c2b1b95 /tests/auto/corelib/global
parentfe4f977a2df9c99030e7841387fd65f033f99721 (diff)
Suppress a couple of GCC warnings
They're already suppressed for clang. -Wself-move was added in GCC 13.1, the CI still doesn't have that so wrap it in an "#if Q_CC_GNU >= 1301". Change-Id: I5c2ec78a5003485261b4e3125f85c5b78dd0db22 Reviewed-by: Marc Mutz <marc.mutz@qt.io> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/corelib/global')
-rw-r--r--tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp b/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp
index d0b1803d55..ba3692d159 100644
--- a/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp
+++ b/tests/auto/corelib/global/qrandomgenerator/tst_qrandomgenerator.cpp
@@ -128,6 +128,9 @@ void tst_QRandomGenerator::basics()
QT_WARNING_PUSH
QT_WARNING_DISABLE_CLANG("-Wself-move")
QT_WARNING_DISABLE_CLANG("-Wself-assign-overloaded")
+#if defined(Q_CC_GNU_ONLY) && Q_CC_GNU >= 1301
+QT_WARNING_DISABLE_GCC("-Wself-move")
+#endif
// copyable && movable
rng = rng;
rng = std::move(rng);