summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/block08/bdbuf_test3_3.c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-05-23 15:29:49 +1000
committerChris Johns <chrisj@rtems.org>2016-05-25 15:47:34 +1000
commitaddf1aa8689d64f7aaf0b97185c29265aa713730 (patch)
treefad7b2c6581797197d1d4a4ca5e92fafe7fbd253 /testsuites/libtests/block08/bdbuf_test3_3.c
parenttestsuite: Fix printk formating warning. (diff)
downloadrtems-addf1aa8689d64f7aaf0b97185c29265aa713730.tar.bz2
testsuite: Fix printk format warnings.
Diffstat (limited to 'testsuites/libtests/block08/bdbuf_test3_3.c')
-rw-r--r--testsuites/libtests/block08/bdbuf_test3_3.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/testsuites/libtests/block08/bdbuf_test3_3.c b/testsuites/libtests/block08/bdbuf_test3_3.c
index 749f8e5d57..9b3080b13e 100644
--- a/testsuites/libtests/block08/bdbuf_test3_3.c
+++ b/testsuites/libtests/block08/bdbuf_test3_3.c
@@ -1,7 +1,7 @@
/*! @file
* @brief Check how read/release work in case of only one buffer in ready list.
*
- * The same as Test 3.2, but instead of calling rtems_bdbuf_get() in
+ * The same as Test 3.2, but instead of calling rtems_bdbuf_get() in
* threads #1 and #2, it calls rtems_bdbuf_read().
*
* Test sequence:
@@ -13,7 +13,7 @@
* -# Call rtems_bdbuf_release(#N1) in thread #1.
* -# Check that only one thread (thread #2 or thread #3) got a buffer.
* Another thread shall still be blocked.
- * -# Call rtems_bdbuf_release(#N2) in thread #2 and check that
+ * -# Call rtems_bdbuf_release(#N2) in thread #2 and check that
* thread #3 got a buffer as the result.
* .
*
@@ -113,7 +113,7 @@ bdbuf_test3_3_main()
CHECK_NO_DRV_MSG();
- TEST_END();
+ TEST_STOP();
}
static rtems_task
@@ -198,7 +198,7 @@ bdbuf_test3_3_thread3(rtems_task_argument arg)
printk("Thread #3 DEBLOCK\n");
CONTINUE_MAIN(3);
-
+
rc = rtems_bdbuf_release(bd);
if (rc != RTEMS_SUCCESSFUL)
{
@@ -207,4 +207,3 @@ bdbuf_test3_3_thread3(rtems_task_argument arg)
THREAD_END();
}
-