summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-01-20 17:12:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-01-20 17:12:38 +0000
commitc313b68128b136845e795c412533dd2d6c37dba8 (patch)
tree0409889f233f562681363277cbcdb6143baecf2f /testsuites
parent2010-01-20 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-c313b68128b136845e795c412533dd2d6c37dba8.tar.bz2
2010-01-20 Joel Sherrill <joel.sherrill@oarcorp.com>
* block08/block08.scn, block08/init.c: Add starting and ending messages so the scripts detect successful exit.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/libtests/ChangeLog5
-rw-r--r--testsuites/libtests/block08/block08.scn2
-rw-r--r--testsuites/libtests/block08/init.c2
3 files changed, 9 insertions, 0 deletions
diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog
index e3366c519e..fa51ce08a0 100644
--- a/testsuites/libtests/ChangeLog
+++ b/testsuites/libtests/ChangeLog
@@ -1,3 +1,8 @@
+2010-01-20 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * block08/block08.scn, block08/init.c: Add starting and ending messages
+ so the scripts detect successful exit.
+
2010-01-18 Sebastian Huber <Sebastian.Huber@embedded-brains.de>
* block09/block09.doc, block09/init.c, block09/.cvsignore,
diff --git a/testsuites/libtests/block08/block08.scn b/testsuites/libtests/block08/block08.scn
index 75653cb999..1be5dc853d 100644
--- a/testsuites/libtests/block08/block08.scn
+++ b/testsuites/libtests/block08/block08.scn
@@ -1,3 +1,4 @@
+*** TEST BLOCK 8 ***
test_disk_ioctl() Unexpected request comes 2
TEST DISK - OK
DEV: /dev/testdisk [1024]
@@ -84,3 +85,4 @@ DISK_DRV: R [116]
DISK_DRV: W [116]
Test 4.3: Step 4 - OK
TEST PASSED
+*** END OF TEST BLOCK 8 ***
diff --git a/testsuites/libtests/block08/init.c b/testsuites/libtests/block08/init.c
index aad3ced4f4..4077aab7e0 100644
--- a/testsuites/libtests/block08/init.c
+++ b/testsuites/libtests/block08/init.c
@@ -26,7 +26,9 @@ rtems_task Init(rtems_task_argument argument)
{
rtems_status_code status;
+ puts( "\n\n*** TEST BLOCK 8 ***" );
run_bdbuf_tests();
+ puts( "*** END OF TEST BLOCK 8 ***" );
exit(0);
}