aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt/source/test/rt_test_sequence_006.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-10-16 18:58:50 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-10-16 18:58:50 +0000
commit734aea5b10f4d7470d29c07ae51fbd9d9b588205 (patch)
treeabe9d3be9dd9cecdf0d6dcb96863b3378742e547 /test/rt/source/test/rt_test_sequence_006.c
parent3aafb1ec45b251b45a6a52a7492b649b1ee5c41d (diff)
downloadChibiOS-734aea5b10f4d7470d29c07ae51fbd9d9b588205.tar.gz
ChibiOS-734aea5b10f4d7470d29c07ae51fbd9d9b588205.tar.bz2
ChibiOS-734aea5b10f4d7470d29c07ae51fbd9d9b588205.zip
Enhanced test system, not complete yet.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10837 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/rt/source/test/rt_test_sequence_006.c')
-rw-r--r--test/rt/source/test/rt_test_sequence_006.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/test/rt/source/test/rt_test_sequence_006.c b/test/rt/source/test/rt_test_sequence_006.c
index 7c6847b51..d505455b9 100644
--- a/test/rt/source/test/rt_test_sequence_006.c
+++ b/test/rt/source/test/rt_test_sequence_006.c
@@ -1037,9 +1037,9 @@ static const testcase_t rt_test_006_009 = {
****************************************************************************/
/**
- * @brief Mutexes, Condition Variables and Priority Inheritance.
+ * @brief Array of test cases.
*/
-const testcase_t * const rt_test_sequence_006[] = {
+const testcase_t * const rt_test_sequence_006_array[] = {
&rt_test_006_001,
#if (CH_DBG_THREADS_PROFILING) || defined(__DOXYGEN__)
&rt_test_006_002,
@@ -1066,4 +1066,12 @@ const testcase_t * const rt_test_sequence_006[] = {
NULL
};
+/**
+ * @brief Mutexes, Condition Variables and Priority Inheritance.
+ */
+const testsequence_t rt_test_sequence_006 = {
+ NULL,
+ rt_test_sequence_006_array
+};
+
#endif /* CH_CFG_USE_MUTEXES */