From 8a91bbf69b383a58b30508eafafcb7a3cbcdaff2 Mon Sep 17 00:00:00 2001 From: Ying ming Date: Fri, 30 Apr 2021 11:10:43 +0800 Subject: [PATCH] test: atomic: multiple equal priority threads access atomic variable Add an testcase. Creat two preempt threads with equal priority to atomiclly access the same atomic value. Because these preempt threads are of equal priority, so enable time slice to make them scheduled. The thread will execute for some time. In this time, the two sub threads will be scheduled separately according to the time slice. Signed-off-by: Ying ming --- tests/kernel/common/src/atomic.c | 63 ++++++++++++++++++++++++++++++++ tests/kernel/common/src/main.c | 2 + 2 files changed, 65 insertions(+) diff --git a/tests/kernel/common/src/atomic.c b/tests/kernel/common/src/atomic.c index 020f5054cd9..2217eac3b2d 100644 --- a/tests/kernel/common/src/atomic.c +++ b/tests/kernel/common/src/atomic.c @@ -10,6 +10,19 @@ /* an example of the number of atomic bit in an array */ #define NUM_FLAG_BITS 100 +/* set test_cycle 1000us * 20 = 20ms */ +#define TEST_CYCLE 20 + +#define THREADS_NUM 2 + +#define STACK_SIZE (512 + CONFIG_TEST_EXTRA_STACKSIZE) + +static K_THREAD_STACK_ARRAY_DEFINE(stack, THREADS_NUM, STACK_SIZE); + +static struct k_thread thread[THREADS_NUM]; + +atomic_t total_atomic; + /** * @addtogroup kernel_common_tests * @{ @@ -267,6 +280,56 @@ void test_atomic(void) "Failed to clear a single bit in an array of atomic variables"); } } + +/* This helper function will run more the one slice */ +void atomic_handler(void *p1, void *p2, void *p3) +{ + ARG_UNUSED(p1); + ARG_UNUSED(p2); + ARG_UNUSED(p3); + + for (int i = 0; i < TEST_CYCLE; i++) { + atomic_inc(&total_atomic); + /* Do 1000us busywait to longer the handler execute time */ + k_busy_wait(1000); + } +} + +/** + * @brief Verify atomic operation with threads + * + * @details Creat two preempt threads with equal priority to + * atomiclly access the same atomic value. Because these preempt + * threads are of equal priority, so enable time slice to make + * them scheduled. The thread will execute for some time. + * In this time, the two sub threads will be scheduled separately + * according to the time slice. + * + * @ingroup kernel_common_tests + */ +void test_threads_access_atomic(void) +{ + k_tid_t tid[THREADS_NUM]; + + /* enable time slice 1ms at priority 10 */ + k_sched_time_slice_set(1, K_PRIO_PREEMPT(10)); + + for (int i = 0; i < THREADS_NUM; i++) { + tid[i] = k_thread_create(&thread[i], stack[i], STACK_SIZE, + atomic_handler, NULL, NULL, NULL, + K_PRIO_PREEMPT(10), 0, K_NO_WAIT); + } + + for (int i = 0; i < THREADS_NUM; i++) { + k_thread_join(tid[i], K_FOREVER); + } + + /* disable time slice */ + k_sched_time_slice_set(0, K_PRIO_PREEMPT(10)); + + zassert_true(total_atomic == (TEST_CYCLE * THREADS_NUM), + "atomic counting failure"); +} /** * @} */ diff --git a/tests/kernel/common/src/main.c b/tests/kernel/common/src/main.c index 69bc9def8f0..201dbf8155b 100644 --- a/tests/kernel/common/src/main.c +++ b/tests/kernel/common/src/main.c @@ -33,6 +33,7 @@ extern void test_sys_put_le48(void); extern void test_sys_get_le64(void); extern void test_sys_put_le64(void); extern void test_atomic(void); +extern void test_threads_access_atomic(void); extern void test_errno(void); extern void test_printk(void); extern void test_timeout_order(void); @@ -144,6 +145,7 @@ void test_main(void) ztest_unit_test(test_sys_get_le64), ztest_unit_test(test_sys_put_le64), ztest_user_unit_test(test_atomic), + ztest_unit_test(test_threads_access_atomic), ztest_unit_test(test_bitfield), ztest_unit_test(test_bitarray_declare), ztest_unit_test(test_bitarray_set_clear),