Add tests for C11-like atomic operations.
This commit is contained in:
parent
ff8714269c
commit
1eccfecd40
@ -1,3 +1,7 @@
|
|||||||
|
2014-11-20 Torvald Riegel <triegel@redhat.com>
|
||||||
|
|
||||||
|
* csu/tst-atomic.c (do_test): Add tests for C11-like atomics.
|
||||||
|
|
||||||
2014-11-20 Torvald Riegel <triegel@redhat.com>
|
2014-11-20 Torvald Riegel <triegel@redhat.com>
|
||||||
|
|
||||||
* include/atomic.h (__atomic_link_error, __atomic_check_size,
|
* include/atomic.h (__atomic_link_error, __atomic_check_size,
|
||||||
|
130
csu/tst-atomic.c
130
csu/tst-atomic.c
@ -28,7 +28,7 @@
|
|||||||
static int
|
static int
|
||||||
do_test (void)
|
do_test (void)
|
||||||
{
|
{
|
||||||
atomic_t mem;
|
atomic_t mem, expected;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
#ifdef atomic_compare_and_exchange_val_acq
|
#ifdef atomic_compare_and_exchange_val_acq
|
||||||
@ -489,6 +489,134 @@ do_test (void)
|
|||||||
ret = 1;
|
ret = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Tests for C11-like atomics. */
|
||||||
|
mem = 11;
|
||||||
|
if (atomic_load_relaxed (&mem) != 11 || atomic_load_acquire (&mem) != 11)
|
||||||
|
{
|
||||||
|
puts ("atomic_load_{relaxed,acquire} test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
atomic_store_relaxed (&mem, 12);
|
||||||
|
if (mem != 12)
|
||||||
|
{
|
||||||
|
puts ("atomic_store_relaxed test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
atomic_store_release (&mem, 13);
|
||||||
|
if (mem != 13)
|
||||||
|
{
|
||||||
|
puts ("atomic_store_release test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
mem = 14;
|
||||||
|
expected = 14;
|
||||||
|
if (!atomic_compare_exchange_weak_relaxed (&mem, &expected, 25)
|
||||||
|
|| mem != 25 || expected != 14)
|
||||||
|
{
|
||||||
|
puts ("atomic_compare_exchange_weak_relaxed test 1 failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
if (atomic_compare_exchange_weak_relaxed (&mem, &expected, 14)
|
||||||
|
|| mem != 25 || expected != 25)
|
||||||
|
{
|
||||||
|
puts ("atomic_compare_exchange_weak_relaxed test 2 failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
mem = 14;
|
||||||
|
expected = 14;
|
||||||
|
if (!atomic_compare_exchange_weak_acquire (&mem, &expected, 25)
|
||||||
|
|| mem != 25 || expected != 14)
|
||||||
|
{
|
||||||
|
puts ("atomic_compare_exchange_weak_acquire test 1 failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
if (atomic_compare_exchange_weak_acquire (&mem, &expected, 14)
|
||||||
|
|| mem != 25 || expected != 25)
|
||||||
|
{
|
||||||
|
puts ("atomic_compare_exchange_weak_acquire test 2 failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
mem = 14;
|
||||||
|
expected = 14;
|
||||||
|
if (!atomic_compare_exchange_weak_release (&mem, &expected, 25)
|
||||||
|
|| mem != 25 || expected != 14)
|
||||||
|
{
|
||||||
|
puts ("atomic_compare_exchange_weak_release test 1 failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
if (atomic_compare_exchange_weak_release (&mem, &expected, 14)
|
||||||
|
|| mem != 25 || expected != 25)
|
||||||
|
{
|
||||||
|
puts ("atomic_compare_exchange_weak_release test 2 failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
mem = 23;
|
||||||
|
if (atomic_exchange_acquire (&mem, 42) != 23 || mem != 42)
|
||||||
|
{
|
||||||
|
puts ("atomic_exchange_acquire test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
mem = 23;
|
||||||
|
if (atomic_exchange_release (&mem, 42) != 23 || mem != 42)
|
||||||
|
{
|
||||||
|
puts ("atomic_exchange_release test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
mem = 23;
|
||||||
|
if (atomic_fetch_add_relaxed (&mem, 1) != 23 || mem != 24)
|
||||||
|
{
|
||||||
|
puts ("atomic_fetch_add_relaxed test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
mem = 23;
|
||||||
|
if (atomic_fetch_add_acquire (&mem, 1) != 23 || mem != 24)
|
||||||
|
{
|
||||||
|
puts ("atomic_fetch_add_acquire test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
mem = 23;
|
||||||
|
if (atomic_fetch_add_release (&mem, 1) != 23 || mem != 24)
|
||||||
|
{
|
||||||
|
puts ("atomic_fetch_add_release test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
mem = 23;
|
||||||
|
if (atomic_fetch_add_acq_rel (&mem, 1) != 23 || mem != 24)
|
||||||
|
{
|
||||||
|
puts ("atomic_fetch_add_acq_rel test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
mem = 3;
|
||||||
|
if (atomic_fetch_and_acquire (&mem, 2) != 3 || mem != 2)
|
||||||
|
{
|
||||||
|
puts ("atomic_fetch_and_acquire test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
mem = 4;
|
||||||
|
if (atomic_fetch_or_relaxed (&mem, 2) != 4 || mem != 6)
|
||||||
|
{
|
||||||
|
puts ("atomic_fetch_or_relaxed test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
mem = 4;
|
||||||
|
if (atomic_fetch_or_acquire (&mem, 2) != 4 || mem != 6)
|
||||||
|
{
|
||||||
|
puts ("atomic_fetch_or_acquire test failed");
|
||||||
|
ret = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* This is a single-threaded test, so we can't test the effects of the
|
||||||
|
fences. */
|
||||||
|
atomic_thread_fence_acquire ();
|
||||||
|
atomic_thread_fence_release ();
|
||||||
|
atomic_thread_fence_seq_cst ();
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user