summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests/fsdosfsformat01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/fstests/fsdosfsformat01/init.c')
-rw-r--r--testsuites/fstests/fsdosfsformat01/init.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/testsuites/fstests/fsdosfsformat01/init.c b/testsuites/fstests/fsdosfsformat01/init.c
index 03b2071810..9ef22b0ead 100644
--- a/testsuites/fstests/fsdosfsformat01/init.c
+++ b/testsuites/fstests/fsdosfsformat01/init.c
@@ -28,6 +28,8 @@
#include <bsp.h>
+const char rtems_test_name[] = "FSDOSFSFORMAT 1";
+
#define MAX_PATH_LENGTH 100 /* Maximum number of characters per path */
#define SECTOR_SIZE 512 /* sector size (bytes) */
#define FAT12_MAX_CLN 4085 /* maximum + 1 number of clusters for FAT12 */
@@ -471,12 +473,11 @@ static void test( void )
static void Init( rtems_task_argument arg )
{
- puts( "\n\n*** TEST FSDOSFSFORMAT 1 ***" );
+ TEST_BEGIN();
test();
- puts( "*** END OF TEST FSDOSFSFORMAT 1 ***" );
-
+ TEST_END();
rtems_test_exit( 0 );
}
@@ -496,6 +497,8 @@ static void Init( rtems_task_argument arg )
#define CONFIGURE_INIT_TASK_STACK_SIZE ( 32 * 1024 )
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_BDBUF_BUFFER_MAX_SIZE ( 32 * 1024 )