| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- /*
- * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Unlicense OR CC0-1.0
- */
- #include <assert.h>
- #include <stdint.h>
- #include <stddef.h>
- #include <stdbool.h>
- #include <stdatomic.h>
- #include <stdio.h>
- #include <pthread.h>
- #include "esp_pthread.h"
- #include "freertos/portmacro.h"
- #include "unity.h"
- #include "unity_fixture.h"
- /* non-static to prevent optimization */
- atomic_ullong g_atomic64;
- atomic_uint g_atomic32;
- atomic_ushort g_atomic16;
- atomic_uchar g_atomic8;
- TEST_GROUP(stdatomic);
- TEST_SETUP(stdatomic)
- {
- }
- TEST_TEAR_DOWN(stdatomic)
- {
- }
- TEST(stdatomic, test_64bit_atomics_fetch_op)
- {
- unsigned long long x64 = 0;
- g_atomic64 = 0; // calls atomic_store
- x64 += atomic_fetch_or (&g_atomic64, 0x1111111111111111ULL);
- x64 += atomic_fetch_xor(&g_atomic64, 0x3333333333333333ULL);
- x64 += atomic_fetch_and(&g_atomic64, 0xf0f0f0f0f0f0f0f0ULL);
- x64 += atomic_fetch_sub(&g_atomic64, 0x0f0f0f0f0f0f0f0fULL);
- x64 += atomic_fetch_add(&g_atomic64, 0x2222222222222222ULL);
- #ifndef __clang__
- x64 += __atomic_fetch_nand_8 (&g_atomic64, 0xAAAAAAAAAAAAAAAAULL, 0);
- TEST_ASSERT_EQUAL_HEX64(0x9797979797979797ULL, x64);
- TEST_ASSERT_EQUAL_HEX64(0xDDDDDDDDDDDDDDDDULL, g_atomic64); // calls atomic_load
- #else
- TEST_ASSERT_EQUAL_HEX64(0x6464646464646464ULL, x64);
- TEST_ASSERT_EQUAL_HEX64(0x3333333333333333ULL, g_atomic64); // calls atomic_load
- #endif
- }
- TEST(stdatomic, test_32bit_atomics_fetch_op)
- {
- unsigned int x32 = 0;
- g_atomic32 = 0;
- x32 += atomic_fetch_or (&g_atomic32, 0x11111111U);
- x32 += atomic_fetch_xor(&g_atomic32, 0x33333333U);
- x32 += atomic_fetch_and(&g_atomic32, 0xf0f0f0f0U);
- x32 += atomic_fetch_sub(&g_atomic32, 0x0f0f0f0fU);
- x32 += atomic_fetch_add(&g_atomic32, 0x22222222U);
- #ifndef __clang__
- x32 += __atomic_fetch_nand_4 (&g_atomic32, 0xAAAAAAAAU, 0);
- TEST_ASSERT_EQUAL_HEX32(0x97979797U, x32);
- TEST_ASSERT_EQUAL_HEX32(0xDDDDDDDDU, g_atomic32);
- #else
- TEST_ASSERT_EQUAL_HEX32(0x64646464U, x32);
- TEST_ASSERT_EQUAL_HEX32(0x33333333U, g_atomic32); // calls atomic_load
- #endif
- }
- TEST(stdatomic, test_16bit_atomics_fetch_op)
- {
- unsigned int x16 = 0;
- g_atomic16 = 0;
- x16 += atomic_fetch_or (&g_atomic16, 0x1111);
- x16 += atomic_fetch_xor(&g_atomic16, 0x3333);
- x16 += atomic_fetch_and(&g_atomic16, 0xf0f0);
- x16 += atomic_fetch_sub(&g_atomic16, 0x0f0f);
- x16 += atomic_fetch_add(&g_atomic16, 0x2222);
- #ifndef __clang__
- x16 += __atomic_fetch_nand_2 (&g_atomic16, 0xAAAA, 0);
- TEST_ASSERT_EQUAL_HEX16(0x9797, x16);
- TEST_ASSERT_EQUAL_HEX16(0xDDDD, g_atomic16);
- #else
- TEST_ASSERT_EQUAL_HEX16(0x6464, x16);
- TEST_ASSERT_EQUAL_HEX16(0x3333, g_atomic16); // calls atomic_load
- #endif
- }
- TEST(stdatomic, test_8bit_atomics_fetch_op)
- {
- unsigned int x8 = 0;
- g_atomic8 = 0;
- x8 += atomic_fetch_or (&g_atomic8, 0x11);
- x8 += atomic_fetch_xor(&g_atomic8, 0x33);
- x8 += atomic_fetch_and(&g_atomic8, 0xf0);
- x8 += atomic_fetch_sub(&g_atomic8, 0x0f);
- x8 += atomic_fetch_add(&g_atomic8, 0x22);
- #ifndef __clang__
- x8 += __atomic_fetch_nand_1 (&g_atomic8, 0xAA, 0);
- TEST_ASSERT_EQUAL_HEX8(0x97, x8);
- TEST_ASSERT_EQUAL_HEX8(0xDD, g_atomic8);
- #else
- TEST_ASSERT_EQUAL_HEX8(0x64, x8);
- TEST_ASSERT_EQUAL_HEX8(0x33, g_atomic8); // calls atomic_load
- #endif
- }
- #ifndef __clang__
- TEST(stdatomic, test_64bit_atomics_op_fetch)
- {
- unsigned long long x64 = 0;
- g_atomic64 = 0; // calls atomic_store
- x64 += __atomic_or_fetch_8 (&g_atomic64, 0x1111111111111111ULL, 0);
- x64 += __atomic_xor_fetch_8(&g_atomic64, 0x3333333333333333ULL, 0);
- x64 += __atomic_and_fetch_8(&g_atomic64, 0xf0f0f0f0f0f0f0f0ULL, 0);
- x64 += __atomic_sub_fetch_8(&g_atomic64, 0x0f0f0f0f0f0f0f0fULL, 0);
- x64 += __atomic_add_fetch_8(&g_atomic64, 0x2222222222222222ULL, 0);
- x64 += __atomic_nand_fetch_8(&g_atomic64, 0xAAAAAAAAAAAAAAAAULL, 0);
- TEST_ASSERT_EQUAL_HEX64(0x7575757575757574ULL, x64);
- TEST_ASSERT_EQUAL_HEX64(0xDDDDDDDDDDDDDDDDULL, g_atomic64); // calls atomic_load
- }
- TEST(stdatomic, test_32bit_atomics_op_fetch)
- {
- unsigned int x32 = 0;
- g_atomic32 = 0;
- x32 += __atomic_or_fetch_4 (&g_atomic32, 0x11111111U, 0);
- x32 += __atomic_xor_fetch_4(&g_atomic32, 0x33333333U, 0);
- x32 += __atomic_and_fetch_4(&g_atomic32, 0xf0f0f0f0U, 0);
- x32 += __atomic_sub_fetch_4(&g_atomic32, 0x0f0f0f0fU, 0);
- x32 += __atomic_add_fetch_4(&g_atomic32, 0x22222222U, 0);
- x32 += __atomic_nand_fetch_4 (&g_atomic32, 0xAAAAAAAAU, 0);
- TEST_ASSERT_EQUAL_HEX32(0x75757574U, x32);
- TEST_ASSERT_EQUAL_HEX32(0xDDDDDDDDU, g_atomic32);
- }
- TEST(stdatomic, test_16bit_atomics_op_fetch)
- {
- unsigned int x16 = 0;
- g_atomic16 = 0;
- x16 += __atomic_or_fetch_2 (&g_atomic16, 0x1111, 0);
- x16 += __atomic_xor_fetch_2(&g_atomic16, 0x3333, 0);
- x16 += __atomic_and_fetch_2(&g_atomic16, 0xf0f0, 0);
- x16 += __atomic_sub_fetch_2(&g_atomic16, 0x0f0f, 0);
- x16 += __atomic_add_fetch_2(&g_atomic16, 0x2222, 0);
- x16 += __atomic_nand_fetch_2 (&g_atomic16, 0xAAAA, 0);
- TEST_ASSERT_EQUAL_HEX16(0x7574, x16);
- TEST_ASSERT_EQUAL_HEX16(0xDDDD, g_atomic16);
- }
- TEST(stdatomic, test_8bit_atomics_op_fetch)
- {
- unsigned int x8 = 0;
- g_atomic8 = 0;
- x8 += __atomic_or_fetch_1 (&g_atomic8, 0x11, 0);
- x8 += __atomic_xor_fetch_1(&g_atomic8, 0x33, 0);
- x8 += __atomic_and_fetch_1(&g_atomic8, 0xf0, 0);
- x8 += __atomic_sub_fetch_1(&g_atomic8, 0x0f, 0);
- x8 += __atomic_add_fetch_1(&g_atomic8, 0x22, 0);
- x8 += __atomic_nand_fetch_1 (&g_atomic8, 0xAA, 0);
- TEST_ASSERT_EQUAL_HEX8(0x74, x8);
- TEST_ASSERT_EQUAL_HEX8(0xDD, g_atomic8);
- }
- #endif // #ifndef __clang__
- #define TEST_EXCLUSION(n) TEST(stdatomic, test_ ## n ## bit_exclusion) \
- { \
- g_atomic ## n = 0; \
- pthread_t thread1; \
- pthread_t thread2; \
- esp_pthread_cfg_t cfg = esp_pthread_get_default_config(); \
- cfg.pin_to_core = (xPortGetCoreID() + 1) % portNUM_PROCESSORS; \
- esp_pthread_set_cfg(&cfg); \
- pthread_create(&thread1, NULL, exclusion_task_ ## n, (void*) 1); \
- cfg.pin_to_core = xPortGetCoreID(); \
- esp_pthread_set_cfg(&cfg); \
- pthread_create(&thread2, NULL, exclusion_task_ ## n, (void*) 0); \
- pthread_join(thread1, NULL); \
- pthread_join(thread2, NULL); \
- TEST_ASSERT_EQUAL(0, g_atomic ## n); \
- }
- #define TEST_EXCLUSION_TASK(n) static void* exclusion_task_ ## n(void *varg) \
- { \
- int arg = (int) varg; \
- for (int i = 0; i < 1000000; ++i) { \
- if (arg == 0) { \
- atomic_fetch_add(&g_atomic ## n, 1ULL); \
- } else { \
- atomic_fetch_sub(&g_atomic ## n, 1ULL); \
- } \
- } \
- return NULL; \
- }
- TEST_EXCLUSION_TASK(64)
- TEST_EXCLUSION(64)
- TEST_EXCLUSION_TASK(32)
- TEST_EXCLUSION(32)
- TEST_EXCLUSION_TASK(16)
- TEST_EXCLUSION(16)
- TEST_EXCLUSION_TASK(8)
- TEST_EXCLUSION(8)
- #define ITER_COUNT 20000
- #define TEST_RACE_OPERATION(NAME, LHSTYPE, PRE, POST, INIT, FINAL) \
- \
- static _Atomic LHSTYPE var_##NAME = (INIT); \
- \
- static void *test_thread_##NAME (void *arg) \
- { \
- for (int i = 0; i < ITER_COUNT; i++) \
- { \
- PRE var_##NAME POST; \
- } \
- return NULL; \
- } \
- \
- TEST(stdatomic, test_ ##NAME) \
- { \
- pthread_t thread_id1; \
- pthread_t thread_id2; \
- esp_pthread_cfg_t cfg = esp_pthread_get_default_config(); \
- cfg.pin_to_core = (xPortGetCoreID() + 1) % portNUM_PROCESSORS; \
- esp_pthread_set_cfg(&cfg); \
- pthread_create (&thread_id1, NULL, test_thread_##NAME, NULL); \
- cfg.pin_to_core = xPortGetCoreID(); \
- esp_pthread_set_cfg(&cfg); \
- pthread_create (&thread_id2, NULL, test_thread_##NAME, NULL); \
- pthread_join (thread_id1, NULL); \
- pthread_join (thread_id2, NULL); \
- TEST_ASSERT_EQUAL((FINAL), var_##NAME); \
- }
- TEST_RACE_OPERATION (uint8_add, uint8_t, , += 1, 0, (uint8_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_add_3, uint8_t, , += 3, 0, (uint8_t) (6*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_postinc, uint8_t, , ++, 0, (uint8_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_preinc, uint8_t, ++, , 0, (uint8_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_sub, uint8_t, , -= 1, 0, (uint8_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_sub_3, uint8_t, , -= 3, 0, (uint8_t) -(6*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_postdec, uint8_t, , --, 0, (uint8_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_predec, uint8_t, --, , 0, (uint8_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint8_mul, uint8_t, , *= 3, 1, (uint8_t) 0x1)
- TEST_RACE_OPERATION (uint16_add, uint16_t, , += 1, 0, (uint16_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_add_3, uint16_t, , += 3, 0, (uint16_t) (6*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_postinc, uint16_t, , ++, 0, (uint16_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_preinc, uint16_t, ++, , 0, (uint16_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_sub, uint16_t, , -= 1, 0, (uint16_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_sub_3, uint16_t, , -= 3, 0, (uint16_t) -(6*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_postdec, uint16_t, , --, 0, (uint16_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_predec, uint16_t, --, , 0, (uint16_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint16_mul, uint16_t, , *= 3, 1, (uint16_t) 0x6D01)
- TEST_RACE_OPERATION (uint32_add, uint32_t, , += 1, 0, (uint32_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_add_3, uint32_t, , += 3, 0, (uint32_t) (6*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_postinc, uint32_t, , ++, 0, (uint32_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_preinc, uint32_t, ++, , 0, (uint32_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_sub, uint32_t, , -= 1, 0, (uint32_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_sub_3, uint32_t, , -= 3, 0, (uint32_t) -(6*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_postdec, uint32_t, , --, 0, (uint32_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_predec, uint32_t, --, , 0, (uint32_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint32_mul, uint32_t, , *= 3, 1, (uint32_t) 0xC1E36D01U)
- TEST_RACE_OPERATION (uint64_add, uint64_t, , += 1, 0, (uint64_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_add_3, uint64_t, , += 3, 0, (uint64_t) (6*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_add_neg, uint64_t, , += 1, -10000, (uint64_t) (2*ITER_COUNT-10000))
- TEST_RACE_OPERATION (uint64_postinc, uint64_t, , ++, 0, (uint64_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_postinc_neg, uint64_t, , ++, -10000, (uint64_t) (2*ITER_COUNT-10000))
- TEST_RACE_OPERATION (uint64_preinc, uint64_t, ++, , 0, (uint64_t) (2*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_preinc_neg, uint64_t, ++, , -10000, (uint64_t) (2*ITER_COUNT-10000))
- TEST_RACE_OPERATION (uint64_sub, uint64_t, , -= 1, 0, (uint64_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_sub_3, uint64_t, , -= 3, 0, (uint64_t) -(6*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_sub_neg, uint64_t, , -= 1, 10000, (uint64_t) ((-2*ITER_COUNT)+10000))
- TEST_RACE_OPERATION (uint64_postdec, uint64_t, , --, 0, (uint64_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_postdec_neg, uint64_t, , --, 10000, (uint64_t) ((-2*ITER_COUNT)+10000))
- TEST_RACE_OPERATION (uint64_predec, uint64_t, --, , 0, (uint64_t) -(2*ITER_COUNT))
- TEST_RACE_OPERATION (uint64_predec_neg, uint64_t, --, , 10000, (uint64_t) ((-2*ITER_COUNT)+10000))
- TEST_RACE_OPERATION (uint64_mul, uint64_t, , *= 3, 1, (uint64_t) 0x988EE974C1E36D01ULL)
- TEST_RACE_OPERATION (float_add, float, , += 1, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (complex_float_add, _Complex float, , += 1, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (float_postinc, float, , ++, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (float_preinc, float, ++, , 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (float_sub, float, , -= 1, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (complex_float_sub, _Complex float, , -= 1, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (float_postdec, float, , --, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (float_predec, float, --, , 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (double_add, double, , += 1, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (complex_double_add, _Complex double, , += 1, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (double_postinc, double, , ++, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (double_preinc, double, ++, , 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (double_sub, double, , -= 1, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (complex_double_sub, _Complex double, , -= 1, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (double_postdec, double, , --, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (double_predec, double, --, , 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (long_double_add, long double, , += 1, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (complex_long_double_add, _Complex long double, , += 1, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (long_double_postinc, long double, , ++, 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (long_double_sub, long double, , -= 1, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (long_double_preinc, long double, ++, , 0, (2*ITER_COUNT))
- TEST_RACE_OPERATION (complex_long_double_sub, _Complex long double, , -= 1, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (long_double_postdec, long double, , --, 0, -(2*ITER_COUNT))
- TEST_RACE_OPERATION (long_double_predec, long double, --, , 0, -(2*ITER_COUNT))
- TEST_GROUP_RUNNER(stdatomic)
- {
- RUN_TEST_CASE(stdatomic, test_64bit_atomics_fetch_op)
- RUN_TEST_CASE(stdatomic, test_32bit_atomics_fetch_op)
- RUN_TEST_CASE(stdatomic, test_16bit_atomics_fetch_op)
- RUN_TEST_CASE(stdatomic, test_8bit_atomics_fetch_op)
- #ifndef __clang__
- RUN_TEST_CASE(stdatomic, test_64bit_atomics_op_fetch)
- RUN_TEST_CASE(stdatomic, test_32bit_atomics_op_fetch)
- RUN_TEST_CASE(stdatomic, test_16bit_atomics_op_fetch)
- RUN_TEST_CASE(stdatomic, test_8bit_atomics_op_fetch)
- #endif
- RUN_TEST_CASE(stdatomic, test_64bit_exclusion)
- RUN_TEST_CASE(stdatomic, test_32bit_exclusion)
- RUN_TEST_CASE(stdatomic, test_16bit_exclusion)
- RUN_TEST_CASE(stdatomic, test_8bit_exclusion)
- RUN_TEST_CASE(stdatomic, test_uint8_add)
- RUN_TEST_CASE(stdatomic, test_uint8_add_3);
- RUN_TEST_CASE(stdatomic, test_uint8_postinc);
- RUN_TEST_CASE(stdatomic, test_uint8_preinc);
- RUN_TEST_CASE(stdatomic, test_uint8_sub);
- RUN_TEST_CASE(stdatomic, test_uint8_sub_3);
- RUN_TEST_CASE(stdatomic, test_uint8_postdec);
- RUN_TEST_CASE(stdatomic, test_uint8_predec);
- RUN_TEST_CASE(stdatomic, test_uint8_mul);
- RUN_TEST_CASE(stdatomic, test_uint16_add);
- RUN_TEST_CASE(stdatomic, test_uint16_add_3);
- RUN_TEST_CASE(stdatomic, test_uint16_postinc);
- RUN_TEST_CASE(stdatomic, test_uint16_preinc);
- RUN_TEST_CASE(stdatomic, test_uint16_sub);
- RUN_TEST_CASE(stdatomic, test_uint16_sub_3);
- RUN_TEST_CASE(stdatomic, test_uint16_postdec);
- RUN_TEST_CASE(stdatomic, test_uint16_predec);
- RUN_TEST_CASE(stdatomic, test_uint16_mul);
- RUN_TEST_CASE(stdatomic, test_uint32_add);
- RUN_TEST_CASE(stdatomic, test_uint32_add_3);
- RUN_TEST_CASE(stdatomic, test_uint32_postinc);
- RUN_TEST_CASE(stdatomic, test_uint32_preinc);
- RUN_TEST_CASE(stdatomic, test_uint32_sub);
- RUN_TEST_CASE(stdatomic, test_uint32_sub_3);
- RUN_TEST_CASE(stdatomic, test_uint32_postdec);
- RUN_TEST_CASE(stdatomic, test_uint32_predec);
- RUN_TEST_CASE(stdatomic, test_uint32_mul);
- RUN_TEST_CASE(stdatomic, test_uint64_add);
- RUN_TEST_CASE(stdatomic, test_uint64_add_3);
- RUN_TEST_CASE(stdatomic, test_uint64_add_neg);
- RUN_TEST_CASE(stdatomic, test_uint64_sub);
- RUN_TEST_CASE(stdatomic, test_uint64_sub_3);
- RUN_TEST_CASE(stdatomic, test_uint64_sub_neg);
- RUN_TEST_CASE(stdatomic, test_uint64_postinc);
- RUN_TEST_CASE(stdatomic, test_uint64_postinc_neg);
- RUN_TEST_CASE(stdatomic, test_uint64_preinc);
- RUN_TEST_CASE(stdatomic, test_uint64_preinc_neg);
- RUN_TEST_CASE(stdatomic, test_uint64_postdec);
- RUN_TEST_CASE(stdatomic, test_uint64_postdec_neg);
- RUN_TEST_CASE(stdatomic, test_uint64_predec);
- RUN_TEST_CASE(stdatomic, test_uint64_predec_neg);
- RUN_TEST_CASE(stdatomic, test_uint64_mul);
- RUN_TEST_CASE(stdatomic, test_float_add);
- RUN_TEST_CASE(stdatomic, test_complex_float_add);
- RUN_TEST_CASE(stdatomic, test_float_postinc);
- RUN_TEST_CASE(stdatomic, test_float_preinc);
- RUN_TEST_CASE(stdatomic, test_float_sub);
- RUN_TEST_CASE(stdatomic, test_complex_float_sub);
- RUN_TEST_CASE(stdatomic, test_float_postdec);
- RUN_TEST_CASE(stdatomic, test_float_predec);
- RUN_TEST_CASE(stdatomic, test_double_add);
- RUN_TEST_CASE(stdatomic, test_complex_double_add);
- RUN_TEST_CASE(stdatomic, test_double_postinc);
- RUN_TEST_CASE(stdatomic, test_double_preinc);
- RUN_TEST_CASE(stdatomic, test_double_sub);
- RUN_TEST_CASE(stdatomic, test_complex_double_sub);
- RUN_TEST_CASE(stdatomic, test_double_postdec);
- RUN_TEST_CASE(stdatomic, test_double_predec);
- RUN_TEST_CASE(stdatomic, test_long_double_add);
- RUN_TEST_CASE(stdatomic, test_complex_long_double_add);
- RUN_TEST_CASE(stdatomic, test_long_double_postinc);
- RUN_TEST_CASE(stdatomic, test_long_double_preinc);
- RUN_TEST_CASE(stdatomic, test_long_double_sub);
- RUN_TEST_CASE(stdatomic, test_complex_long_double_sub);
- RUN_TEST_CASE(stdatomic, test_long_double_postdec);
- RUN_TEST_CASE(stdatomic, test_long_double_predec);
- }
|