The tests for clear() and test_and_set() didn't cover all cases.
* testsuite/29_atomics/atomic_flag/clear/1.cc: Also test clear()
when the value is currently set.
* testsuite/29_atomics/atomic_flag/test_and_set/explicit.cc:
Actually check the return value.
* testsuite/29_atomics/atomic_flag/test_and_set/implicit.cc:
Likewise.
{
std::atomic_flag f = ATOMIC_FLAG_INIT;
- f.clear(); // set to false
+ f.clear(); // set to false
+ VERIFY( false == f.test_and_set() ); // return true
+ VERIFY( true == f.test_and_set() ); // return true
+ f.clear(); // set to false
VERIFY( false == f.test_and_set() ); // return previous false, set to true
- VERIFY( true == f.test_and_set() ); // return true
-
- return 0;
}
// <http://www.gnu.org/licenses/>.
#include <atomic>
+#include <testsuite_hooks.h>
int main()
{
using namespace std;
atomic_flag af = ATOMIC_FLAG_INIT;
- if (!af.test_and_set(memory_order_acquire))
- af.clear(memory_order_release);
-
- return 0;
+ VERIFY( ! af.test_and_set(memory_order_acquire) );
+ VERIFY( af.test_and_set(memory_order_acquire) );
}
// <http://www.gnu.org/licenses/>.
#include <atomic>
+#include <testsuite_hooks.h>
int main()
{
using namespace std;
atomic_flag af = ATOMIC_FLAG_INIT;
- if (!af.test_and_set())
- af.clear();
-
- return 0;
+ VERIFY( ! af.test_and_set(memory_order_acquire) );
+ VERIFY( af.test_and_set(memory_order_acquire) );
}