//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // UNSUPPORTED: libcpp-has-no-threads // ... assertion fails line 34 // // http://b/33278386 // https://llvm.org/bugs/show_bug.cgi?id=30445 // XFAIL: arm-linux-androideabi // // template // bool // atomic_compare_exchange_strong(volatile atomic* obj, T* expc, T desr); // // template // bool // atomic_compare_exchange_strong(atomic* obj, T* expc, T desr); #include #include #include #include "atomic_helpers.h" template struct TestFn { void operator()() const { { typedef std::atomic A; A a; T t(T(1)); std::atomic_init(&a, t); assert(std::atomic_compare_exchange_strong(&a, &t, T(2)) == true); assert(a == T(2)); assert(t == T(1)); assert(std::atomic_compare_exchange_strong(&a, &t, T(3)) == false); assert(a == T(2)); assert(t == T(2)); } { typedef std::atomic A; volatile A a; T t(T(1)); std::atomic_init(&a, t); assert(std::atomic_compare_exchange_strong(&a, &t, T(2)) == true); assert(a == T(2)); assert(t == T(1)); assert(std::atomic_compare_exchange_strong(&a, &t, T(3)) == false); assert(a == T(2)); assert(t == T(2)); } } }; int main() { TestEachAtomicType()(); }