summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/thread
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-26 17:11:19 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-26 18:06:34 +0200
commitf418a96f9b7f003738894d0c19e176b2abc457df (patch)
tree01c5f37ed6cd4079f296ae066ae0bc82b0f62392 /tests/auto/corelib/thread
parentd1fd2ff11f53be850eeb7f5f4699ea4a8966f164 (diff)
Disable warning about self-move and self-assign-overload
Change-Id: I1d20d3f424eced5cc5787934663b9d243f75d46e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/corelib/thread')
-rw-r--r--tests/auto/corelib/thread/qatomicint/tst_qatomicint.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/corelib/thread/qatomicint/tst_qatomicint.cpp b/tests/auto/corelib/thread/qatomicint/tst_qatomicint.cpp
index 71f4d367fe..58275e0372 100644
--- a/tests/auto/corelib/thread/qatomicint/tst_qatomicint.cpp
+++ b/tests/auto/corelib/thread/qatomicint/tst_qatomicint.cpp
@@ -840,9 +840,12 @@ void tst_QAtomicInt::operators()
QCOMPARE(int(atomic), x);
QCOMPARE(int(atomic), 0x13);
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_CLANG("-Wself-assign-overloaded")
x = (atomic ^= atomic);
QCOMPARE(int(atomic), x);
QCOMPARE(int(atomic), 0);
+QT_WARNING_POP
}
void tst_QAtomicInt::testAndSet_loop()