2008-06-26 10:54:55 +00:00
|
|
|
/*
|
2010-02-21 07:24:53 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
|
2008-06-26 10:54:55 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-08 17:37:49 +00:00
|
|
|
#include "ch.h"
|
2008-06-26 10:54:55 +00:00
|
|
|
#include "test.h"
|
|
|
|
|
2009-05-09 16:46:49 +00:00
|
|
|
/**
|
|
|
|
* @page test_sem Semaphores test
|
|
|
|
*
|
2010-04-27 11:53:03 +00:00
|
|
|
* File: @ref testsem.c
|
|
|
|
*
|
2009-05-09 16:46:49 +00:00
|
|
|
* <h2>Description</h2>
|
2009-08-30 06:59:43 +00:00
|
|
|
* This module implements the test sequence for the @ref semaphores subsystem.
|
2009-05-09 16:46:49 +00:00
|
|
|
*
|
|
|
|
* <h2>Objective</h2>
|
2009-08-30 06:59:43 +00:00
|
|
|
* Objective of the test module is to cover 100% of the @ref semaphores code.
|
2009-05-09 16:46:49 +00:00
|
|
|
*
|
|
|
|
* <h2>Preconditions</h2>
|
|
|
|
* The module requires the following kernel options:
|
|
|
|
* - @p CH_USE_SEMAPHORES
|
|
|
|
* .
|
|
|
|
* In case some of the required options are not enabled then some or all tests
|
|
|
|
* may be skipped.
|
|
|
|
*
|
|
|
|
* <h2>Test Cases</h2>
|
|
|
|
* - @subpage test_sem_001
|
|
|
|
* - @subpage test_sem_002
|
|
|
|
* - @subpage test_sem_003
|
2010-10-09 07:58:41 +00:00
|
|
|
* - @subpage test_sem_004
|
2009-05-09 16:46:49 +00:00
|
|
|
* .
|
|
|
|
* @file testsem.c
|
|
|
|
* @brief Semaphores test source file
|
|
|
|
* @file testsem.h
|
|
|
|
* @brief Semaphores test header file
|
|
|
|
*/
|
|
|
|
|
2009-02-07 19:14:15 +00:00
|
|
|
#if CH_USE_SEMAPHORES
|
2008-11-09 09:31:17 +00:00
|
|
|
|
2008-10-15 18:26:16 +00:00
|
|
|
#define ALLOWED_DELAY MS2ST(5)
|
2008-06-26 10:54:55 +00:00
|
|
|
|
2009-05-16 10:57:16 +00:00
|
|
|
/*
|
|
|
|
* Note, the static initializers are not really required because the
|
|
|
|
* variables are explicitly initialized in each test case. It is done in order
|
2010-02-21 07:24:53 +00:00
|
|
|
* to test the macros.
|
2009-05-16 10:57:16 +00:00
|
|
|
*/
|
|
|
|
static SEMAPHORE_DECL(sem1, 0);
|
2008-06-26 10:54:55 +00:00
|
|
|
|
2009-05-09 16:46:49 +00:00
|
|
|
/**
|
|
|
|
* @page test_sem_001 Enqueuing test
|
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
|
|
|
* Five threads with randomized priorities are enqueued to a semaphore then
|
|
|
|
* awakened one at time.<br>
|
|
|
|
* The test expects that the threads reach their goal in FIFO order or
|
|
|
|
* priority order depending on the CH_USE_SEMAPHORES_PRIORITY configuration
|
|
|
|
* setting.
|
|
|
|
*/
|
2008-06-26 10:54:55 +00:00
|
|
|
|
|
|
|
static void sem1_setup(void) {
|
|
|
|
|
|
|
|
chSemInit(&sem1, 0);
|
|
|
|
}
|
|
|
|
|
2009-04-12 08:38:51 +00:00
|
|
|
static msg_t thread1(void *p) {
|
2008-06-26 10:54:55 +00:00
|
|
|
|
|
|
|
chSemWait(&sem1);
|
|
|
|
test_emit_token(*(char *)p);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sem1_execute(void) {
|
|
|
|
|
2009-04-12 08:38:51 +00:00
|
|
|
threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriority()+5, thread1, "A");
|
|
|
|
threads[1] = chThdCreateStatic(wa[1], WA_SIZE, chThdGetPriority()+1, thread1, "B");
|
|
|
|
threads[2] = chThdCreateStatic(wa[2], WA_SIZE, chThdGetPriority()+3, thread1, "C");
|
|
|
|
threads[3] = chThdCreateStatic(wa[3], WA_SIZE, chThdGetPriority()+4, thread1, "D");
|
|
|
|
threads[4] = chThdCreateStatic(wa[4], WA_SIZE, chThdGetPriority()+2, thread1, "E");
|
2008-06-26 10:54:55 +00:00
|
|
|
chSemSignal(&sem1);
|
|
|
|
chSemSignal(&sem1);
|
|
|
|
chSemSignal(&sem1);
|
|
|
|
chSemSignal(&sem1);
|
|
|
|
chSemSignal(&sem1);
|
|
|
|
test_wait_threads();
|
2009-03-13 20:29:04 +00:00
|
|
|
#if CH_USE_SEMAPHORES_PRIORITY
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert_sequence(1, "ADCEB");
|
2009-03-13 20:29:04 +00:00
|
|
|
#else
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert_sequence(1, "ABCDE");
|
2009-03-13 20:29:04 +00:00
|
|
|
#endif
|
2011-01-22 16:10:42 +00:00
|
|
|
threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriority()+5, thread1, "A");
|
|
|
|
chSemSetCounterI(&sem1, 2);
|
|
|
|
test_wait_threads();
|
|
|
|
test_assert(2, chSemGetCounterI(&sem1) == 2, "invalid counter");
|
2008-06-26 10:54:55 +00:00
|
|
|
}
|
|
|
|
|
2010-06-25 08:55:40 +00:00
|
|
|
ROMCONST struct testcase testsem1 = {
|
2010-06-15 11:34:16 +00:00
|
|
|
"Semaphores, enqueuing",
|
|
|
|
sem1_setup,
|
|
|
|
NULL,
|
|
|
|
sem1_execute
|
|
|
|
};
|
|
|
|
|
2009-05-09 16:46:49 +00:00
|
|
|
/**
|
|
|
|
* @page test_sem_002 Timeout test
|
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
|
|
|
* The three possible semaphore waiting modes (do not wait, wait with timeout,
|
|
|
|
* wait without timeout) are explored.<br>
|
|
|
|
* The test expects that the semaphore wait function returns the correct value
|
|
|
|
* in each of the above scenario and that the semaphore structure status is
|
|
|
|
* correct after each operation.
|
|
|
|
*/
|
2008-06-26 10:54:55 +00:00
|
|
|
|
|
|
|
static void sem2_setup(void) {
|
|
|
|
|
|
|
|
chSemInit(&sem1, 0);
|
|
|
|
}
|
|
|
|
|
2009-04-12 08:38:51 +00:00
|
|
|
static msg_t thread2(void *p) {
|
|
|
|
|
2009-10-17 10:33:37 +00:00
|
|
|
(void)p;
|
2009-04-12 08:38:51 +00:00
|
|
|
chThdSleepMilliseconds(50);
|
2009-04-17 14:53:04 +00:00
|
|
|
chSysLock();
|
|
|
|
chSemSignalI(&sem1); /* For coverage reasons */
|
|
|
|
chSchRescheduleS();
|
|
|
|
chSysUnlock();
|
2009-04-12 08:38:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-26 10:54:55 +00:00
|
|
|
static void sem2_execute(void) {
|
|
|
|
int i;
|
|
|
|
systime_t target_time;
|
2009-03-07 15:32:40 +00:00
|
|
|
msg_t msg;
|
|
|
|
|
2009-04-12 08:38:51 +00:00
|
|
|
/*
|
|
|
|
* Testing special case TIME_IMMEDIATE.
|
|
|
|
*/
|
|
|
|
msg = chSemWaitTimeout(&sem1, TIME_IMMEDIATE);
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert(1, msg == RDY_TIMEOUT, "wrong wake-up message");
|
|
|
|
test_assert(2, isempty(&sem1.s_queue), "queue not empty");
|
|
|
|
test_assert(3, sem1.s_cnt == 0, "counter not zero");
|
2009-04-12 08:38:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Testing not timeout condition.
|
|
|
|
*/
|
2009-04-25 11:12:10 +00:00
|
|
|
threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriority() - 1,
|
2009-05-09 16:46:49 +00:00
|
|
|
thread2, 0);
|
2009-04-12 08:38:51 +00:00
|
|
|
msg = chSemWaitTimeout(&sem1, MS2ST(500));
|
|
|
|
test_wait_threads();
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert(4, msg == RDY_OK, "wrong wake-up message");
|
|
|
|
test_assert(5, isempty(&sem1.s_queue), "queue not empty");
|
|
|
|
test_assert(6, sem1.s_cnt == 0, "counter not zero");
|
2008-06-26 10:54:55 +00:00
|
|
|
|
2009-04-12 08:38:51 +00:00
|
|
|
/*
|
|
|
|
* Testing timeout condition.
|
|
|
|
*/
|
2009-04-17 14:53:04 +00:00
|
|
|
test_wait_tick();
|
2009-03-10 15:31:58 +00:00
|
|
|
target_time = chTimeNow() + MS2ST(5 * 500);
|
2008-06-26 10:54:55 +00:00
|
|
|
for (i = 0; i < 5; i++) {
|
|
|
|
test_emit_token('A' + i);
|
2009-03-07 15:32:40 +00:00
|
|
|
msg = chSemWaitTimeout(&sem1, MS2ST(500));
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert(7, msg == RDY_TIMEOUT, "wrong wake-up message");
|
|
|
|
test_assert(8, isempty(&sem1.s_queue), "queue not empty");
|
|
|
|
test_assert(9, sem1.s_cnt == 0, "counter not zero");
|
2008-06-26 10:54:55 +00:00
|
|
|
}
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert_sequence(10, "ABCDE");
|
|
|
|
test_assert_time_window(11, target_time, target_time + ALLOWED_DELAY);
|
2008-06-26 10:54:55 +00:00
|
|
|
}
|
|
|
|
|
2010-06-25 08:55:40 +00:00
|
|
|
ROMCONST struct testcase testsem2 = {
|
2010-06-15 11:34:16 +00:00
|
|
|
"Semaphores, timeout",
|
2008-06-26 10:54:55 +00:00
|
|
|
sem2_setup,
|
2009-02-16 18:22:49 +00:00
|
|
|
NULL,
|
2008-06-26 10:54:55 +00:00
|
|
|
sem2_execute
|
|
|
|
};
|
2009-04-17 14:53:04 +00:00
|
|
|
|
|
|
|
#if CH_USE_SEMSW
|
2009-05-09 16:46:49 +00:00
|
|
|
/**
|
|
|
|
* @page test_sem_003 Atomic signal-wait test
|
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
2010-10-05 14:05:25 +00:00
|
|
|
* This test case explicitly addresses the @p chSemWaitSignal() function. A
|
2009-05-09 16:46:49 +00:00
|
|
|
* thread is created that performs a wait and a signal operations.
|
|
|
|
* The tester thread is awakened from an atomic wait/signal operation.<br>
|
|
|
|
* The test expects that the semaphore wait function returns the correct value
|
|
|
|
* in each of the above scenario and that the semaphore structure status is
|
|
|
|
* correct after each operation.
|
|
|
|
*/
|
|
|
|
|
2009-04-17 14:53:04 +00:00
|
|
|
static void sem3_setup(void) {
|
|
|
|
|
|
|
|
chSemInit(&sem1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static msg_t thread3(void *p) {
|
|
|
|
|
2009-10-17 10:33:37 +00:00
|
|
|
(void)p;
|
2009-04-17 14:53:04 +00:00
|
|
|
chSemWait(&sem1);
|
|
|
|
chSemSignal(&sem1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sem3_execute(void) {
|
|
|
|
|
2009-05-09 16:46:49 +00:00
|
|
|
threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriority()+1, thread3, 0);
|
2009-04-17 14:53:04 +00:00
|
|
|
chSemSignalWait(&sem1, &sem1);
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert(1, isempty(&sem1.s_queue), "queue not empty");
|
|
|
|
test_assert(2, sem1.s_cnt == 0, "counter not zero");
|
2009-04-17 14:53:04 +00:00
|
|
|
|
|
|
|
chSemSignalWait(&sem1, &sem1);
|
2009-04-25 11:12:10 +00:00
|
|
|
test_assert(3, isempty(&sem1.s_queue), "queue not empty");
|
|
|
|
test_assert(4, sem1.s_cnt == 0, "counter not zero");
|
2009-04-17 14:53:04 +00:00
|
|
|
}
|
|
|
|
|
2010-06-25 08:55:40 +00:00
|
|
|
ROMCONST struct testcase testsem3 = {
|
2010-06-15 11:34:16 +00:00
|
|
|
"Semaphores, atomic signal-wait",
|
2009-04-17 14:53:04 +00:00
|
|
|
sem3_setup,
|
|
|
|
NULL,
|
|
|
|
sem3_execute
|
|
|
|
};
|
|
|
|
#endif /* CH_USE_SEMSW */
|
2010-10-05 14:05:25 +00:00
|
|
|
|
|
|
|
/**
|
2010-10-08 18:16:38 +00:00
|
|
|
* @page test_sem_004 Binary Wait and Signal
|
2010-10-05 14:05:25 +00:00
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
|
|
|
* This test case tests the binary semaphores functionality. The test both
|
|
|
|
* checks the binary semaphore status and the expected status of the underlying
|
|
|
|
* counting semaphore.
|
|
|
|
*/
|
|
|
|
static msg_t thread4(void *p) {
|
|
|
|
|
|
|
|
chBSemSignal((BinarySemaphore *)p);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sem4_execute(void) {
|
2011-02-20 08:34:05 +00:00
|
|
|
BinarySemaphore bsem;
|
2010-10-05 14:05:25 +00:00
|
|
|
|
|
|
|
/* Creates a taken binary semaphore.*/
|
|
|
|
chBSemInit(&bsem, TRUE);
|
|
|
|
chBSemReset(&bsem, TRUE);
|
|
|
|
test_assert(1, chBSemGetStateI(&bsem) == TRUE, "not taken");
|
|
|
|
|
|
|
|
/* Starts a signaler thread at a lower priority.*/
|
|
|
|
threads[0] = chThdCreateStatic(wa[0], WA_SIZE,
|
|
|
|
chThdGetPriority()-1, thread4, &bsem);
|
|
|
|
|
|
|
|
/* Waits to be signaled.*/
|
|
|
|
chBSemWait(&bsem);
|
|
|
|
|
|
|
|
/* The binary semaphore is expected to be taken.*/
|
|
|
|
test_assert(2, chBSemGetStateI(&bsem) == TRUE, "not taken");
|
|
|
|
|
|
|
|
/* Releasing it, check both the binary semaphore state and the underlying
|
|
|
|
counter semaphore state..*/
|
|
|
|
chBSemSignal(&bsem);
|
|
|
|
test_assert(3, chBSemGetStateI(&bsem) == FALSE, "still taken");
|
|
|
|
test_assert(4, chSemGetCounterI(&bsem.bs_sem) == 1, "unexpected counter");
|
|
|
|
|
|
|
|
/* Checking signaling overflow, the counter must not go beyond 1.*/
|
|
|
|
chBSemSignal(&bsem);
|
|
|
|
test_assert(3, chBSemGetStateI(&bsem) == FALSE, "taken");
|
|
|
|
test_assert(5, chSemGetCounterI(&bsem.bs_sem) == 1, "unexpected counter");
|
|
|
|
}
|
|
|
|
|
|
|
|
ROMCONST struct testcase testsem4 = {
|
|
|
|
"Binary Semaphores, functionality",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sem4_execute
|
|
|
|
};
|
2008-11-09 09:31:17 +00:00
|
|
|
#endif /* CH_USE_SEMAPHORES */
|
2009-02-16 18:22:49 +00:00
|
|
|
|
2010-04-27 11:53:03 +00:00
|
|
|
/**
|
|
|
|
* @brief Test sequence for semaphores.
|
2009-02-16 18:22:49 +00:00
|
|
|
*/
|
2010-06-25 08:55:40 +00:00
|
|
|
ROMCONST struct testcase * ROMCONST patternsem[] = {
|
2009-02-16 18:22:49 +00:00
|
|
|
#if CH_USE_SEMAPHORES
|
|
|
|
&testsem1,
|
|
|
|
&testsem2,
|
2009-04-17 14:53:04 +00:00
|
|
|
#if CH_USE_SEMSW
|
|
|
|
&testsem3,
|
|
|
|
#endif
|
2010-10-05 14:05:25 +00:00
|
|
|
&testsem4,
|
2009-02-16 18:22:49 +00:00
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|