2014-02-10 15:36:30 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hal.h"
|
|
|
|
#include "ch_test.h"
|
|
|
|
#include "test_root.h"
|
|
|
|
|
|
|
|
/**
|
2014-02-10 15:47:18 +00:00
|
|
|
* @page test_sequence_001 Threads Functionality
|
2014-02-10 15:36:30 +00:00
|
|
|
*
|
2014-02-10 15:47:18 +00:00
|
|
|
* File: @ref test_sequence_001.c
|
2014-02-10 15:36:30 +00:00
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
2014-02-10 15:37:51 +00:00
|
|
|
* This sequence tests the ChibiOS/NIL functionalities related to threading.
|
2014-02-10 15:36:30 +00:00
|
|
|
*
|
|
|
|
* <h2>Test Cases</h2>
|
2014-02-10 15:47:18 +00:00
|
|
|
* - @subpage test_001_001
|
|
|
|
* - @subpage test_001_002
|
2014-02-10 15:36:30 +00:00
|
|
|
* .
|
|
|
|
*/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Shared code.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Test cases.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if TRUE || defined(__DOXYGEN__)
|
|
|
|
/**
|
2014-02-10 15:47:18 +00:00
|
|
|
* @page test_001_001 System Tick Counter functionality
|
2014-02-10 15:36:30 +00:00
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
2014-02-10 15:37:51 +00:00
|
|
|
* The functionality of the API @p chVTGetSystemTimeX() is tested.
|
2014-02-10 15:36:30 +00:00
|
|
|
*
|
|
|
|
* <h2>Conditions</h2>
|
|
|
|
* None.
|
|
|
|
*
|
|
|
|
* <h2>Test Steps</h2>
|
2014-02-10 15:37:51 +00:00
|
|
|
* - A System Tick Counter increment is expected, the test simply hangs if
|
|
|
|
* it does not happen.
|
2014-02-10 15:36:30 +00:00
|
|
|
* .
|
|
|
|
*/
|
|
|
|
|
2014-02-10 15:47:18 +00:00
|
|
|
static void test_001_001_execute(void) {
|
2014-02-10 15:37:51 +00:00
|
|
|
systime_t time;
|
2014-02-10 15:36:30 +00:00
|
|
|
|
2014-02-10 15:37:51 +00:00
|
|
|
/* A System Tick Counter increment is expected, the test simply hangs if
|
|
|
|
it does not happen.*/
|
2014-02-10 15:36:30 +00:00
|
|
|
test_set_step(1);
|
|
|
|
{
|
2014-02-10 15:37:51 +00:00
|
|
|
time = chVTGetSystemTimeX();
|
|
|
|
while (time == chVTGetSystemTimeX()) {
|
|
|
|
}
|
2014-02-10 15:36:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 15:47:18 +00:00
|
|
|
static const testcase_t test_001_001 = {
|
2014-02-10 15:37:51 +00:00
|
|
|
"System Tick Counter functionality",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-02-10 15:47:18 +00:00
|
|
|
test_001_001_execute
|
2014-02-10 15:36:30 +00:00
|
|
|
};
|
|
|
|
#endif /* TRUE */
|
|
|
|
|
|
|
|
#if TRUE || defined(__DOXYGEN__)
|
|
|
|
/**
|
2014-02-10 15:47:18 +00:00
|
|
|
* @page test_001_002 Thread Sleep functionality
|
2014-02-10 15:36:30 +00:00
|
|
|
*
|
|
|
|
* <h2>Description</h2>
|
2014-02-10 15:37:51 +00:00
|
|
|
* The functionality of the API @p chThdSleep() and derivatives is tested.
|
2014-02-10 15:36:30 +00:00
|
|
|
*
|
|
|
|
* <h2>Conditions</h2>
|
|
|
|
* None.
|
|
|
|
*
|
|
|
|
* <h2>Test Steps</h2>
|
2014-02-10 15:37:51 +00:00
|
|
|
* - The current system time is read then a sleep is performed for 100 system
|
|
|
|
* ticks and on exit the system time is verified again.
|
|
|
|
* - The current system time is read then a sleep is performed for 100000
|
|
|
|
* microseconds and on exit the system time is verified again.
|
|
|
|
* - The current system time is read then a sleep is performed for 100
|
|
|
|
* milliseconds and on exit the system time is verified again.
|
|
|
|
* - The current system time is read then a sleep is performed for 1
|
|
|
|
* second and on exit the system time is verified again.
|
2014-02-10 15:36:30 +00:00
|
|
|
* .
|
|
|
|
*/
|
|
|
|
|
2014-02-10 15:47:18 +00:00
|
|
|
static void test_001_002_execute(void) {
|
2014-02-10 15:37:51 +00:00
|
|
|
systime_t time;
|
2014-02-10 15:36:30 +00:00
|
|
|
|
2014-02-10 15:37:51 +00:00
|
|
|
/* The current system time is read then a sleep is performed for 100 system
|
|
|
|
ticks and on exit the system time is verified again.*/
|
|
|
|
test_set_step(1);
|
|
|
|
{
|
|
|
|
time = chVTGetSystemTimeX();
|
|
|
|
chThdSleep(100);
|
|
|
|
test_assert_time_window(time + 100,
|
|
|
|
time + 100 + 1,
|
|
|
|
"out of time window");
|
|
|
|
}
|
2014-02-10 15:36:30 +00:00
|
|
|
|
2014-02-10 15:37:51 +00:00
|
|
|
/* The current system time is read then a sleep is performed for 100000
|
|
|
|
microseconds and on exit the system time is verified again.*/
|
|
|
|
test_set_step(2);
|
|
|
|
{
|
|
|
|
time = chVTGetSystemTimeX();
|
|
|
|
chThdSleepMicroseconds(100);
|
|
|
|
test_assert_time_window(time + US2ST(100),
|
|
|
|
time + US2ST(100) + 1,
|
|
|
|
"out of time window");
|
|
|
|
}
|
2014-02-10 15:36:30 +00:00
|
|
|
|
2014-02-10 15:37:51 +00:00
|
|
|
/* The current system time is read then a sleep is performed for 100
|
|
|
|
milliseconds and on exit the system time is verified again.*/
|
|
|
|
test_set_step(3);
|
|
|
|
{
|
|
|
|
time = chVTGetSystemTimeX();
|
|
|
|
chThdSleepMilliseconds(100);
|
|
|
|
test_assert_time_window(time + MS2ST(100),
|
|
|
|
time + MS2ST(100) + 1,
|
|
|
|
"out of time window");
|
|
|
|
}
|
2014-02-10 15:36:30 +00:00
|
|
|
|
2014-02-10 15:37:51 +00:00
|
|
|
/* The current system time is read then a sleep is performed for 1
|
|
|
|
second and on exit the system time is verified again.*/
|
|
|
|
test_set_step(4);
|
|
|
|
{
|
|
|
|
time = chVTGetSystemTimeX();
|
|
|
|
chThdSleepSeconds(1);
|
|
|
|
test_assert_time_window(time + S2ST(1),
|
|
|
|
time + S2ST(1) + 1,
|
|
|
|
"out of time window");
|
|
|
|
}
|
2014-02-10 15:36:30 +00:00
|
|
|
|
2014-02-10 15:37:51 +00:00
|
|
|
test_set_step(5);
|
2014-02-10 15:36:30 +00:00
|
|
|
{
|
|
|
|
time = chVTGetSystemTimeX();
|
2014-02-10 15:37:51 +00:00
|
|
|
chThdSleepUntil(time + 100);
|
2014-02-10 15:36:30 +00:00
|
|
|
test_assert_time_window(time + 100,
|
|
|
|
time + 100 + 1,
|
|
|
|
"out of time window");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 15:47:18 +00:00
|
|
|
static const testcase_t test_001_002 = {
|
2014-02-10 15:37:51 +00:00
|
|
|
"Thread Sleep functionality",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-02-10 15:47:18 +00:00
|
|
|
test_001_002_execute
|
2014-02-10 15:36:30 +00:00
|
|
|
};
|
|
|
|
#endif /* TRUE */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Exported data.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Sequence brief description.
|
|
|
|
*/
|
2014-02-10 15:47:18 +00:00
|
|
|
const testcase_t * const test_sequence_001[] = {
|
2014-02-10 15:36:30 +00:00
|
|
|
#if TRUE || defined(__DOXYGEN__)
|
2014-02-10 15:47:18 +00:00
|
|
|
&test_001_001,
|
2014-02-10 15:36:30 +00:00
|
|
|
#endif
|
|
|
|
#if TRUE || defined(__DOXYGEN__)
|
2014-02-10 15:47:18 +00:00
|
|
|
&test_001_002,
|
2014-02-10 15:36:30 +00:00
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|