test: fix misspellings

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2017-06-16 17:51:40 -07:00 committed by Anas Nashif
commit ddbf1255a9
12 changed files with 17 additions and 17 deletions

View file

@ -34,7 +34,7 @@ static struct k_thread y_thread;
/** /**
* *
* @brief Helper thread for measuring thread switeh latency using yield * @brief Helper thread for measuring thread switch latency using yield
* *
* @return N/A * @return N/A
*/ */

View file

@ -13,7 +13,7 @@
* - Test Steps * - Test Steps
* -# Set dma channel configuration including source/dest addr, burstlen * -# Set dma channel configuration including source/dest addr, burstlen
* -# Set direction memory-to-memory * -# Set direction memory-to-memory
* -# Start transter * -# Start transfer
* - Expected Results * - Expected Results
* -# Data is transferred correctly from src to dest * -# Data is transferred correctly from src to dest
* @} * @}

View file

@ -8,7 +8,7 @@
* @addtogroup t_gpio_basic_api * @addtogroup t_gpio_basic_api
* @{ * @{
* @defgroup t_gpio_callback_manage test_gpio_callback_manage * @defgroup t_gpio_callback_manage test_gpio_callback_manage
* @brief TestPurpose: verify zephyr gpio callback add/remvoe and enable/disable * @brief TestPurpose: verify zephyr gpio callback add/remove and enable/disable
* @} * @}
*/ */

View file

@ -343,8 +343,8 @@ static int test_kernel_interrupts(disable_int_func disable_int,
* @brief Test some context routines from a preemptible thread * @brief Test some context routines from a preemptible thread
* *
* This routines tests the k_current_get() and * This routines tests the k_current_get() and
* k_is_in_isr() routines from both a preemtible thread and an ISR (that * k_is_in_isr() routines from both a preemptible thread and an ISR (that
* interrupted a preemtible thread). Checking those routines with cooperative * interrupted a preemptible thread). Checking those routines with cooperative
* threads are done elsewhere. * threads are done elsewhere.
* *
* @return TC_PASS on success * @return TC_PASS on success
@ -467,7 +467,7 @@ static int test_kernel_thread(k_tid_t task_thread_id)
* @brief Entry point to the thread's helper * @brief Entry point to the thread's helper
* *
* This routine is the entry point to the thread's helper thread. It is used to * This routine is the entry point to the thread's helper thread. It is used to
* help test the behaviour of the k_yield() routine. * help test the behavior of the k_yield() routine.
* *
* @param arg1 unused * @param arg1 unused
* @param arg2 unused * @param arg2 unused
@ -508,14 +508,14 @@ static void thread_helper(void *arg1, void *arg2, void *arg3)
* @brief Test the k_yield() routine * @brief Test the k_yield() routine
* *
* This routine tests the k_yield() routine. It starts another thread * This routine tests the k_yield() routine. It starts another thread
* (thus also testing k_thread_create() and checks that behaviour of * (thus also testing k_thread_create() and checks that behavior of
* k_yield() against the cases of there being a higher priority thread, * k_yield() against the cases of there being a higher priority thread,
* a lower priority thread, and another thread of equal priority. * a lower priority thread, and another thread of equal priority.
* *
* On error, it may set <thread_detected_error> to one of the following values: * On error, it may set <thread_detected_error> to one of the following values:
* 10 - helper thread ran prematurely * 10 - helper thread ran prematurely
* 11 - k_yield() did not yield to a higher priority thread * 11 - k_yield() did not yield to a higher priority thread
* 12 - k_yield() did not yield to an equal prioirty thread * 12 - k_yield() did not yield to an equal priority thread
* 13 - k_yield() yielded to a lower priority thread * 13 - k_yield() yielded to a lower priority thread
* *
* @return TC_PASS on success * @return TC_PASS on success

View file

@ -81,7 +81,7 @@ void test_mheap_block_desc(void)
* TESTPOINT: The kernel uses the first 16 bytes of any memory block * TESTPOINT: The kernel uses the first 16 bytes of any memory block
* allocated from the heap memory pool to save the block descriptor * allocated from the heap memory pool to save the block descriptor
* information it needs to later free the block. Consequently, an * information it needs to later free the block. Consequently, an
* applications request for an N byte chunk of heap memory requires a * application's request for an N byte chunk of heap memory requires a
* block that is at least (N+16) bytes long. * block that is at least (N+16) bytes long.
* Test steps: * Test steps:
* initial memory heap status (F for free, U for used): * initial memory heap status (F for free, U for used):

View file

@ -10,7 +10,7 @@
* @defgroup t_mpool_concept test_mpool_concept * @defgroup t_mpool_concept test_mpool_concept
* @brief TestPurpose: verify memory pool concepts. * @brief TestPurpose: verify memory pool concepts.
* @details All TESTPOINTs extracted from kernel documentation. * @details All TESTPOINTs extracted from kernel documentation.
* TESTPOINTs cover testable kernel behaviours that preserve across internal * TESTPOINTs cover testable kernel behaviors that preserve across internal
* implementation change or kernel version change. * implementation change or kernel version change.
* As a black-box test, TESTPOINTs do not cover internal operations. * As a black-box test, TESTPOINTs do not cover internal operations.
* *
@ -22,7 +22,7 @@
* memory block * memory block
* - TESTPOINT: memory pool blocks can be recursively partitioned into quarters * - TESTPOINT: memory pool blocks can be recursively partitioned into quarters
* until blocks of the minimum size are obtained * until blocks of the minimum size are obtained
* - TESTPOINT: if a suitable block cant be created, the allocation request * - TESTPOINT: if a suitable block can't be created, the allocation request
* fails * fails
* *
* TESTPOINTs related to kconfig are covered in kconfig test: * TESTPOINTs related to kconfig are covered in kconfig test:

View file

@ -218,7 +218,7 @@ int testSlabGetAllBlocks(void **p)
/** /**
* *
* @brief Free all memeory blocks * @brief Free all memory blocks
* *
* This routine frees all memory blocks and also verifies that the number of * This routine frees all memory blocks and also verifies that the number of
* blocks used are correct. * blocks used are correct.

View file

@ -10,7 +10,7 @@
* @defgroup t_mslab_concept test_mslab_concept * @defgroup t_mslab_concept test_mslab_concept
* @brief TestPurpose: verify memory slab concepts. * @brief TestPurpose: verify memory slab concepts.
* @details All TESTPOINTs extracted from kernel documentation. * @details All TESTPOINTs extracted from kernel documentation.
* TESTPOINTs cover testable kernel behaviours that preserve across internal * TESTPOINTs cover testable kernel behaviors that preserve across internal
* implementation change or kernel version change. * implementation change or kernel version change.
* As a black-box test, TESTPOINTs do not cover internal operations. * As a black-box test, TESTPOINTs do not cover internal operations.
* *

View file

@ -13,7 +13,7 @@
* A task that owns a mutex is promoted to the priority level of the * A task that owns a mutex is promoted to the priority level of the
* highest-priority task attempting to lock the mutex. * highest-priority task attempting to lock the mutex.
* *
* In addition, recusive locking capabilities and the use of a private mutex * In addition, recursive locking capabilities and the use of a private mutex
* are also tested. * are also tested.
* *
* This module tests the following mutex routines: * This module tests the following mutex routines:

View file

@ -8,7 +8,7 @@
* @addtogroup t_pipe_api * @addtogroup t_pipe_api
* @{ * @{
* @defgroup t_pipe_fail_get_put test_pipe_fail_get_put * @defgroup t_pipe_fail_get_put test_pipe_fail_get_put
* @brief TestPurpose: verify zephyr pipe get/put under differnt condition * @brief TestPurpose: verify zephyr pipe get/put under different condition
* - API coverage * - API coverage
* -# k_pipe_get [TIMEOUT K_NO_WAIT] * -# k_pipe_get [TIMEOUT K_NO_WAIT]
* -# k_pipe_put [K_FOREVER TIMEOUT K_NO_WAIT] * -# k_pipe_put [K_FOREVER TIMEOUT K_NO_WAIT]

View file

@ -63,7 +63,7 @@ void isr_handler(void)
/** /**
* *
* This is the handler for the divde by zero exception. * This is the handler for the divide by zero exception.
* *
* The source of this divide-by-zero error comes from the following line in * The source of this divide-by-zero error comes from the following line in
* main() ... * main() ...

View file

@ -8,7 +8,7 @@
* @file * @file
* @brief Per-arch thread definition * @brief Per-arch thread definition
* *
* This file contains defintions for * This file contains definitions for
* *
* struct _thread_arch * struct _thread_arch
* struct _callee_saved * struct _callee_saved