Home
last modified time | relevance | path

Searched refs:test_name (Results 1 – 1 of 1) sorted by relevance

/examples/utest/testcases/kernel/
A Dobject_tc.c64 char test_name[TEST_RT_NAME_MAX]; in test_object_name_handling() local
68 rt_memset(test_name, 'A', TEST_RT_NAME_MAX - 1); in test_object_name_handling()
69 test_name[TEST_RT_NAME_MAX - 1] = '\0'; in test_object_name_handling()
73 rt_object_init(&static_obj1, RT_Object_Class_Thread, test_name); in test_object_name_handling()
76 uassert_true(rt_strncmp(static_obj1.name, test_name, TEST_RT_NAME_MAX - 1) == 0); in test_object_name_handling()
82 dyn_obj = rt_object_allocate(RT_Object_Class_Thread, test_name); in test_object_name_handling()
86 uassert_true(rt_strncmp(dyn_obj->name, test_name, TEST_RT_NAME_MAX - 1) == 0); in test_object_name_handling()

Completed in 24 milliseconds