summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_atomic_include.template6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_atomic_include.template b/tests/test_atomic_include.template
index 60068b5..06894cd 100644
--- a/tests/test_atomic_include.template
+++ b/tests/test_atomic_include.template
@@ -66,9 +66,9 @@ void test_atomicXX(void)
MISSING(AO_load);
# endif
# if defined(AO_HAVE_test_and_setXX)
- assert(AO_test_and_setXX(&z) == AO_TS_CLEAR);
- assert(AO_test_and_setXX(&z) == AO_TS_SET);
- assert(AO_test_and_setXX(&z) == AO_TS_SET);
+ TA_assert(AO_test_and_setXX(&z) == AO_TS_CLEAR);
+ TA_assert(AO_test_and_setXX(&z) == AO_TS_SET);
+ TA_assert(AO_test_and_setXX(&z) == AO_TS_SET);
AO_CLEAR(&z);
# else
MISSING(AO_test_and_set);