diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-09 14:55:18 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-05-09 14:55:18 +0000 |
commit | f0302498b7a67c59d224acc6e57627989f2dd51c (patch) | |
tree | 915a4210afb07b599a753b05aa8d6716a3a949f7 /test | |
parent | f3ca042618b9b1f5fa877b68e89ec31fe66497eb (diff) | |
download | ChibiOS-f0302498b7a67c59d224acc6e57627989f2dd51c.tar.gz ChibiOS-f0302498b7a67c59d224acc6e57627989f2dd51c.tar.bz2 ChibiOS-f0302498b7a67c59d224acc6e57627989f2dd51c.zip |
Fixed bug 2789383.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@959 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test')
-rw-r--r-- | test/testmtx.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/testmtx.c b/test/testmtx.c index 2665ac76d..72865e7f8 100644 --- a/test/testmtx.c +++ b/test/testmtx.c @@ -567,10 +567,9 @@ const struct testcase testmtx7 = { * @page test_mtx_008 Priority Inheritance boost test
*
* <h2>Description</h2>
- * Five threads take a mutex and then enter a conditional variable queue, the
- * tester thread then proceeds to broadcast the conditional variable.<br>
- * The test expects the threads to reach their goal in increasing priority
- * order regardless of the initial order.
+ * This test case verifies the priority boost of a thread waiting on a
+ * conditional variable queue. It tests this very specific situation in order
+ * to complete the code coverage.
*/
static char *mtx8_gettest(void) {
|