summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psximfs01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psximfs01/init.c')
-rw-r--r--testsuites/psxtests/psximfs01/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/psxtests/psximfs01/init.c b/testsuites/psxtests/psximfs01/init.c
index 01ddacf669..76bb156daf 100644
--- a/testsuites/psxtests/psximfs01/init.c
+++ b/testsuites/psxtests/psximfs01/init.c
@@ -21,6 +21,8 @@
#include <errno.h>
#include <rtems/libcsupport.h>
+const char rtems_test_name[] = "PSXIMFS 1";
+
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
void open_it(bool readOnly, bool create);
@@ -223,7 +225,7 @@ rtems_task Init(
char buf [1];
ssize_t n;
- puts( "\n\n*** TEST IMFS 01 ***" );
+ TEST_BEGIN();
for (i=0 ; i<sizeof(Buffer) ; i++ )
Buffer[i] = (uint8_t) i;
@@ -265,7 +267,7 @@ rtems_task Init(
close_it();
unlink_it();
- puts( "*** END OF TEST IMFS 01 ***" );
+ TEST_END();
rtems_test_exit(0);
}
@@ -278,6 +280,8 @@ rtems_task Init(
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK 16
#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 4
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT