mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-01-11 18:33:16 +01:00
378 lines
11 KiB
C
378 lines
11 KiB
C
/*
|
|
* Copyright (c) 2010, Kelvin Lawson. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. No personal names or organizations' names associated with the
|
|
* Atomthreads project may be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE ATOMTHREADS PROJECT AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
|
|
#include <stddef.h>
|
|
#include "atom.h"
|
|
#include "atomsem.h"
|
|
#include "atomtests.h"
|
|
|
|
|
|
/* Number of test threads */
|
|
#define NUM_TEST_THREADS 2
|
|
|
|
|
|
/* Test OS objects */
|
|
static ATOM_SEM sem1, sem2;
|
|
static ATOM_TCB tcb[NUM_TEST_THREADS];
|
|
static uint8_t test_thread_stack[NUM_TEST_THREADS][TEST_THREAD_STACK_SIZE];
|
|
|
|
|
|
/* Forward declarations */
|
|
static void test1_thread_func (uint32_t param);
|
|
static void test2_thread_func (uint32_t param);
|
|
|
|
|
|
/**
|
|
* \b test_start
|
|
*
|
|
* Start semaphore test.
|
|
*
|
|
* This test exercises the semaphore creation and deletion APIs, including
|
|
* waking threads blocking on a semaphore if the semaphore is deleted.
|
|
* Deletion wakeups are tested twice: once for a thread which is blocking
|
|
* with a timeout and once for a thread which is blocking with no timeout.
|
|
*
|
|
* @retval Number of failures
|
|
*/
|
|
uint32_t test_start (void)
|
|
{
|
|
int failures;
|
|
uint32_t i;
|
|
uint8_t status;
|
|
|
|
/* Default to zero failures */
|
|
failures = 0;
|
|
|
|
/* Test creation and deletion of semaphores: good values */
|
|
for (i = 0; i < 1000; i++)
|
|
{
|
|
if (atomSemCreate (&sem1, 0) == ATOM_OK)
|
|
{
|
|
if (atomSemDelete (&sem1) == ATOM_OK)
|
|
{
|
|
/* Success */
|
|
}
|
|
else
|
|
{
|
|
/* Fail */
|
|
ATOMLOG (_STR("Error deleting semaphore\n"));
|
|
failures++;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* Fail */
|
|
ATOMLOG (_STR("Error creating semaphore\n"));
|
|
failures++;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Test creation and deletion of semaphores: creation checks */
|
|
if (atomSemCreate (NULL, 0) != ATOM_OK)
|
|
{
|
|
/* Success */
|
|
}
|
|
else
|
|
{
|
|
/* Fail */
|
|
ATOMLOG (_STR("Bad semaphore creation checks\n"));
|
|
failures++;
|
|
}
|
|
|
|
/* Test creation and deletion of semaphores: deletion checks */
|
|
if (atomSemDelete (NULL) != ATOM_OK)
|
|
{
|
|
/* Success */
|
|
}
|
|
else
|
|
{
|
|
/* Fail */
|
|
ATOMLOG (_STR("Bad semaphore deletion checks\n"));
|
|
failures++;
|
|
}
|
|
|
|
/* Test wakeup of threads on semaphore deletion (thread blocking with no timeout) */
|
|
if (atomSemCreate (&sem1, 0) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Error creating test semaphore 1\n"));
|
|
failures++;
|
|
}
|
|
|
|
else if (atomSemCreate (&sem2, 0) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Error creating test semaphore 2\n"));
|
|
failures++;
|
|
}
|
|
|
|
else if (atomThreadCreate(&tcb[0], TEST_THREAD_PRIO, test1_thread_func, 0,
|
|
&test_thread_stack[0][TEST_THREAD_STACK_SIZE - 1],
|
|
TEST_THREAD_STACK_SIZE) != ATOM_OK)
|
|
{
|
|
/* Fail */
|
|
ATOMLOG (_STR("Error creating test thread 1\n"));
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
|
|
/*
|
|
* We have created two semaphores. sem1 is for the other thread
|
|
* to wait on, which we will delete from this thread. We want
|
|
* to see that the other thread is woken up if its semaphore
|
|
* is deleted. This is indicated through sem2 being posted
|
|
* back to us.
|
|
*/
|
|
|
|
/* Wait for the other thread to start blocking on sem1 */
|
|
if (atomTimerDelay(SYSTEM_TICKS_PER_SEC) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Failed timer delay\n"));
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/* The other thread will be blocking on sem1 now, delete sem1 */
|
|
if (atomSemDelete(&sem1) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Failed sem1 delete\n"));
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/* Sem1 deleted. The thread should now wake up and post sem2. */
|
|
if ((status = atomSemGet (&sem2, (5*SYSTEM_TICKS_PER_SEC))) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Notify fail (%d)\n"), status);
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/* Success */
|
|
|
|
/* Clean up the last remaining semaphore */
|
|
if (atomSemDelete (&sem2) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Failed sem2 delete\n"));
|
|
failures++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Test wakeup of threads on semaphore deletion (thread blocking with timeout) */
|
|
if (atomSemCreate (&sem1, 0) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Error creating test semaphore 1\n"));
|
|
failures++;
|
|
}
|
|
else if (atomSemCreate (&sem2, 0) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Error creating test semaphore 2\n"));
|
|
failures++;
|
|
}
|
|
else if (atomThreadCreate(&tcb[1], TEST_THREAD_PRIO, test2_thread_func, 0,
|
|
&test_thread_stack[1][TEST_THREAD_STACK_SIZE - 1],
|
|
TEST_THREAD_STACK_SIZE) != ATOM_OK)
|
|
{
|
|
/* Fail */
|
|
ATOMLOG (_STR("Error creating test thread 2\n"));
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* We have created two semaphores. sem1 is for the other thread
|
|
* to wait on, which we will delete from this thread. We want
|
|
* to see that the other thread is woken up if its semaphore
|
|
* is deleted. This is indicated through sem2 being posted
|
|
* back to us.
|
|
*/
|
|
|
|
/* Wait for the other thread to start blocking on sem1 */
|
|
if (atomTimerDelay(SYSTEM_TICKS_PER_SEC) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Failed timer delay\n"));
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/* The other thread will be blocking on sem1 now, delete sem1 */
|
|
if (atomSemDelete(&sem1) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Failed sem1 delete\n"));
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/* Sem1 deleted. The thread should now wake up and post sem2. */
|
|
if ((status = atomSemGet (&sem2, (5*SYSTEM_TICKS_PER_SEC))) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Notify fail (%d)\n"), status);
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/* Success */
|
|
|
|
/* Clean up the last remaining semaphore */
|
|
if (atomSemDelete (&sem2) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Failed sem2 delete\n"));
|
|
failures++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Check thread stack usage (if enabled) */
|
|
#ifdef ATOM_STACK_CHECKING
|
|
{
|
|
uint32_t used_bytes, free_bytes;
|
|
int thread;
|
|
|
|
/* Check all threads */
|
|
for (thread = 0; thread < NUM_TEST_THREADS; thread++)
|
|
{
|
|
/* Check thread stack usage */
|
|
if (atomThreadStackCheck (&tcb[thread], &used_bytes, &free_bytes) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("StackCheck\n"));
|
|
failures++;
|
|
}
|
|
else
|
|
{
|
|
/* Check the thread did not use up to the end of stack */
|
|
if (free_bytes == 0)
|
|
{
|
|
ATOMLOG (_STR("StackOverflow %d\n"), thread);
|
|
failures++;
|
|
}
|
|
|
|
/* Log the stack usage */
|
|
#ifdef TESTS_LOG_STACK_USAGE
|
|
ATOMLOG (_STR("StackUse:%d\n"), (int)used_bytes);
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/* Quit */
|
|
return failures;
|
|
}
|
|
|
|
|
|
/**
|
|
* \b test1_thread_func
|
|
*
|
|
* Entry point for test thread 1.
|
|
*
|
|
* @param[in] param Unused (optional thread entry parameter)
|
|
*
|
|
* @return None
|
|
*/
|
|
static void test1_thread_func (uint32_t param)
|
|
{
|
|
uint8_t status;
|
|
|
|
/* Compiler warnings */
|
|
param = param;
|
|
|
|
/*
|
|
* Wait on sem1 with no timeout. We are expecting to be woken up
|
|
* by the main thread while blocking.
|
|
*/
|
|
status = atomSemGet(&sem1, 0);
|
|
if (status != ATOM_ERR_DELETED)
|
|
{
|
|
ATOMLOG (_STR("Test1 thread woke without deletion (%d)\n"), status);
|
|
}
|
|
else
|
|
{
|
|
/* We were woken due to deletion as expected, post sem2 to notify success */
|
|
if ((status = atomSemPut(&sem2)) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Error posting sem2 on wakeup (%d)\n"), status);
|
|
}
|
|
}
|
|
|
|
/* Wait forever */
|
|
while (1)
|
|
{
|
|
atomTimerDelay (SYSTEM_TICKS_PER_SEC);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* \b test2_thread_func
|
|
*
|
|
* Entry point for test thread 2.
|
|
*
|
|
* @param[in] param Unused (optional thread entry parameter)
|
|
*
|
|
* @return None
|
|
*/
|
|
static void test2_thread_func (uint32_t param)
|
|
{
|
|
uint8_t status;
|
|
|
|
/* Compiler warnings */
|
|
param = param;
|
|
|
|
/*
|
|
* Wait on sem1 with timeout. We are expecting to be woken up
|
|
* by the main thread while blocking.
|
|
*/
|
|
status = atomSemGet(&sem1, (5 * SYSTEM_TICKS_PER_SEC));
|
|
if (status != ATOM_ERR_DELETED)
|
|
{
|
|
ATOMLOG (_STR("Test2 thread woke without deletion (%d)\n"), status);
|
|
}
|
|
else
|
|
{
|
|
/* We were woken due to deletion as expected, post sem2 to notify success */
|
|
if ((status = atomSemPut(&sem2)) != ATOM_OK)
|
|
{
|
|
ATOMLOG (_STR("Error posting sem2 on wakeup\n"));
|
|
}
|
|
}
|
|
|
|
/* Wait forever */
|
|
while (1)
|
|
{
|
|
atomTimerDelay (SYSTEM_TICKS_PER_SEC);
|
|
}
|
|
}
|