aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt/test.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-02-16 10:07:00 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-02-16 10:07:00 +0000
commitcf204e72ea5fd6e4be8b3295cb148fde5fdd47d2 (patch)
tree5aae4b9a6c78c8f14c2a6ca8cd6446f42b3b29bd /test/rt/test.c
parent641f2c372605cf405f0dda8536b45a78e0e5e2e2 (diff)
downloadChibiOS-cf204e72ea5fd6e4be8b3295cb148fde5fdd47d2.tar.gz
ChibiOS-cf204e72ea5fd6e4be8b3295cb148fde5fdd47d2.tar.bz2
ChibiOS-cf204e72ea5fd6e4be8b3295cb148fde5fdd47d2.zip
Tree reorganization.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8900 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/rt/test.c')
-rw-r--r--test/rt/test.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/rt/test.c b/test/rt/test.c
index f4a08eeea..fcba9607d 100644
--- a/test/rt/test.c
+++ b/test/rt/test.c
@@ -35,7 +35,6 @@
#include "testevt.h"
#include "testheap.h"
#include "testpools.h"
-#include "testdyn.h"
#include "testqueues.h"
#include "testbmk.h"
@@ -52,7 +51,6 @@ static ROMCONST struct testcase * ROMCONST *patterns[] = {
patternevt,
patternheap,
patternpools,
- patterndyn,
patternqueues,
patternbmk,
NULL
@@ -194,17 +192,6 @@ bool _test_assert_time_window(unsigned point, systime_t start, systime_t end) {
*/
/**
- * @brief Sets a termination request in all the test-spawned threads.
- */
-void test_terminate_threads(void) {
- int i;
-
- for (i = 0; i < MAX_THREADS; i++)
- if (threads[i])
- chThdTerminate(threads[i]);
-}
-
-/**
* @brief Waits for the completion of all the test-spawned threads.
*/
void test_wait_threads(void) {