diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-07 20:36:26 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-07 20:36:26 +0000 |
commit | b37209d196026ba07f687c487d53dcbeef1f9223 (patch) | |
tree | 948c63aa5d60eb3ec316cc8933764d9305cc75c1 /test/testthd.c | |
parent | aea323e12179301b00e7766fc97dc3d3b51576d9 (diff) | |
download | ChibiOS-b37209d196026ba07f687c487d53dcbeef1f9223.tar.gz ChibiOS-b37209d196026ba07f687c487d53dcbeef1f9223.tar.bz2 ChibiOS-b37209d196026ba07f687c487d53dcbeef1f9223.zip |
Started adding documentation tags to the test suite.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@950 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testthd.c')
-rw-r--r-- | test/testthd.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/testthd.c b/test/testthd.c index e44531868..54db5430e 100644 --- a/test/testthd.c +++ b/test/testthd.c @@ -33,7 +33,7 @@ *
* <h2>Objective</h2>
* Objective of the test module is to cover 100% of the subsystems code
- * as a necessary step in order to assess their readyness.<br>
+ * as a necessary step in order to assess their readyness.
*
* <h2>Preconditions</h2>
* None.
@@ -49,7 +49,9 @@ * - @subpage test_threads_004
* .
* @file testthd.c
+ * @brief Threads and Scheduler test source file
* @file testthd.h
+ * @brief Threads and Scheduler test header file
*/
/**
@@ -59,7 +61,7 @@ * Five threads, with increasing priority, are enqueued in the ready list
* and atomically executed.<br>
* The test expects the threads to perform their operations in increasing
- * priority order redardless of the initial order.
+ * priority order regardless of the initial order.
*/
static msg_t thread(void *p) {
@@ -98,7 +100,7 @@ const struct testcase testthd1 = { * Five threads, with pseudo-random priority, are enqueued in the ready list
* and atomically executed.<br>
* The test expects the threads to perform their operations in increasing
- * priority order redardless of the initial order.
+ * priority order regardless of the initial order.
*/
static char *thd2_gettest(void) {
|