//===----------------------------------------------------------------------===// // // 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 // // template // bool // atomic_compare_exchange_weak(volatile atomic* obj, T* expc, T desr); // // template // bool // atomic_compare_exchange_weak(atomic* obj, T* expc, T desr); #include #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(c_cmpxchg_weak_loop(&a, &t, T(2)) == true); assert(a == T(2)); assert(t == T(1)); assert(std::atomic_compare_exchange_weak(&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(c_cmpxchg_weak_loop(&a, &t, T(2)) == true); assert(a == T(2)); assert(t == T(1)); assert(std::atomic_compare_exchange_weak(&a, &t, T(3)) == false); assert(a == T(2)); assert(t == T(2)); } } }; int main() { TestEachAtomicType()(); }