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.
This commit is contained in:
Joel Sherrill
2010-01-20 17:12:38 +00:00
parent 35dfbd79eb
commit c313b68128
3 changed files with 9 additions and 0 deletions

View File

@@ -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,

View File

@@ -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 ***

View File

@@ -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);
}